开发者

PDO lastInsertId does not work on transactions?

开发者 https://www.devze.com 2023-03-24 05:30 出处:网络
I am using PDO for the first time with MySQL, just playing with it at the moment. So far when I try to do an insert wrapped in transactions...

I am using PDO for the first time with MySQL, just playing with it at the moment.

So far when I try to do an insert wrapped in transactions...

$this->dbh->beginTransaction();
// $sql query ran
$this->dbh->commit();

echo开发者_Python百科 $this->dbh->lastInsertId();

lastInsertId() is returning 0...when I run the same query outside of a transaction, I get the proper id number returned. Is there something I am missing here?


You have to ask for the lastInsertId() before you commit a transaction

Try

$this->dbh->beginTransaction();
// $sql query ran
echo $this->dbh->lastInsertId();
$this->dbh->commit();
0

精彩评论

暂无评论...
验证码 换一张
取 消