使用 insert PDO MySQL 获取插入 id
我正在掌握 PDO 的基础知识。
然而,我试图获取插入行的 id,我使用:
$query = $system->db->prepare("INSERT INTO {$this->_table} (name,description) VALUES (:name,:description)");
$query->execute(array('name'=>$name,'description'=>$description));
我遇到的教程是关于事务的,但是我没有使用事务!
Im getting to grips with the basics of PDO.
However Im trying to get the id of the inserted row, Im using:
$query = $system->db->prepare("INSERT INTO {$this->_table} (name,description) VALUES (:name,:description)");
$query->execute(array('name'=>$name,'description'=>$description));
The tutorials I have come across are regarding transactions, however I am not using transactions!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能正在寻找 lastInsertId。 “返回最后插入的行或序列值的 ID”。
You're probably looking for lastInsertId. "Returns the ID of the last inserted row or sequence value".
使用交易时要注意。
如果在调用
commit
之后调用lastInsertedId
,lastInsertedId
将返回 0 而不是 id。在
execute
之后、commit
之前调用lastInsertedId
。Pay attention when using transactions.
If you call
lastInsertedId
after you callcommit
,lastInsertedId
will return 0 instead of the id.Call
lastInsertedId
right afterexecute
, but beforecommit
.