3

mysql から Zend / TableGateway クラスに切り替えようとしています。

mysql_insert_id に似た、最後に挿入された行の自動インクリメントされた ID を取得する方法があるのだろうか。

グーグルで検索すると、DB-Adapter の lastInsertId() を指すいくつかの回答が見つかりましたが、このメソッドは ZF2 では使用できなくなったようです。また、insert メソッドの戻り値は、ZF1 のような最後の ID ではなく、ブール値を返します。

現在、私は醜い回避策を使用しています。以下のコードを参照してください。

IDを取得するためのより良い/推奨される方法はありますか?

table_1 {
    id: integer, primary key, autoincremented
    content: text
}

table_2 {
    table_1_id: integer
    other_content: text
}

// using mysql
$sql = "INSERT INTO table_1 (content) VALUES ('some text')";
$result = mysql_query($sql);
// check omitted

$id = mysql_insert_id();
$sql = "INSERT INTO table_2 (table_1_id, other_content) VALUES ($id, 'other text')";
$result = mysql_query($sql);


// using Zend - this is the code, I am currently using
//*************************************************************
// get_last_insert_id emulation; works only if content is unique
private function getLastInsertId($tableGateway, $content) {
    $entries = $tableGateway->select(array('content' => $content));
    foreach ($entries as $entry) {
        return $entry->id;
    }

    return null;
}
// another option: get highest ID, must be the last inserted
private function getLastInsertId($tableGateway) {
    // needs a method like 'getRowWithHighestId'
}
//*************************************************************

// ...
table_1_entry = new Table1Entry('some text');
$tableGateway->insert($hydrator->extract($table_1_entry));

//*************************************************************
// using the workaround:
$id = getLastInsertId($tableGateway, $table_1_entry->content);
// 
// there MUST be some Zend method to get this last id.
//*************************************************************

table_1_entry = new Table1Entry('other text', $id);
$tableGateway->insert($hydrator->extract($table_2_entry));
4

2 に答える 2

9

マジック プロパティ$tableGateway->lastInsertValueを使用して ID を取得する

$id = $tableGateway->lastInsertValue;

このプロパティは、挿入データの実行時に設定されます

ソース

$this->lastInsertValue = $this->adapter->getDriver()->getConnection()->getLastGeneratedValue();
于 2012-10-07T02:17:22.573 に答える
0
`enter code here  `$data_add=array(
                'line_1'        =>  $Data1->line_1,
                'line_2'        =>  $Data1->line_2,
                'line_3'        =>  $Data1->line_3,
                'city_id'       =>  $Data1->city_id,
                'state_id'      =>  $Data1->state_id,
                'country_id'    =>  1,
                'is_active'     =>  '1',
        );
            $adapter = $this->tableGateway->getAdapter();
            $otherTable = new TableGateway('address', $adapter);
            $otherTable->insert($data_add);
            $lastInsertValue= $adapter->getDriver()->getConnection()->getLastGeneratedValue();
            print_r('lastInsertId1 :'.$lastInsertValue);
            error_log($lastInsertValue);
        die();
于 2015-07-04T10:46:34.360 に答える