8

我想知道是否有一种方法可以仅使用一个 $sql 对象(而不是使用查询(SQL COMMAND)方法)在 ZF2 中插入多行。

我尝试过这样的事情,但它不起作用:

public function setAgentProjectLink( $IDProject , $IDsAgents )
{
    $values = array () ;
    foreach ( $IDsAgents as $IDAgent):
    {
        $values[] = array ( 'id_agent' => $IDAgent , 'id_projet' => $IDProject) ;
    } endforeach ;

    $sql = new Sql( $this->tableGateway->adapter ) ;
    $insert = $sql->insert() ;

    $insert -> into ( $this->tableGateway->getTable() )
            -> values ( $values ) ;

    $statement = $sql->prepareStatementForSqlObject($insert);
    $result = $statement->execute();
}

尝试在具有两列 ( id_agent, id_projet)的数据库中插入值

4

1 回答 1

7

ZF2 中没有用于 multyinsert 的通用方法但是如果您使用的是 mysql 并且不打算更改为其他数据库,我已经为自己编写了一个 multiInsert 函数:

$data是键值对数组的数组。

protected function multiInsert($table, array $data)
    {
        if (count($data)) {
            $columns = (array)current($data);
            $columns = array_keys($columns);
            $columnsCount = count($columns);
            $platform = $this->db->platform;
            array_filter($columns, function ($index, &$item) use ($platform) {
                $item = $platform->quoteIdentifier($item);
            });
            $columns = "(" . implode(',', $columns) . ")";

            $placeholder = array_fill(0, $columnsCount, '?');
            $placeholder = "(" . implode(',', $placeholder) . ")";
            $placeholder = implode(',', array_fill(0, count($data), $placeholder));

            $values = array();
            foreach ($data as $row) {
                foreach ($row as $key => $value) {
                    $values[] = $value;
                }
            }


            $table = $this->db->platform->quoteIdentifier($table);
            $q = "INSERT INTO $table $columns VALUES $placeholder";
            $this->db->query($q)->execute($values);
        }
    }
于 2014-01-06T06:31:16.330 回答