最后插入 id 和 zend db 表摘要
则扩展 Zend_Db_Table_Abstract
的模型实例中的变量 $tablemodel
$tablemodel->insert($data)
如果我要插入数据, 。有没有任何方法或属性可以获取最后插入的ID?
问候
variable $tablemodel
in an instance of a model which extends Zend_Db_Table_Abstract
, if i do
$tablemodel->insert($data)
to insert data. Is there any method or property to get last insert id?
regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
尝试
try
你可以使用lastInsertId方法
you can use lastInsertId Method
插入查询后使用
use after insert query
$insert_id = $this->db->getLastId()
为我工作$insert_id = $this->db->getLastId()
worked for me