如何在 ZEND 中获取更新的行 ID?
我使用
$table->update($data, $where);
如何在 ZEND 中获取更新的行 id?
I use
$table->update($data, $where);
How do I get updated row id in ZEND?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
与使用普通的 SQL 一样,只需重新查询所需的信息即可。使用
$table->select('rowid')->where($where)
来执行此操作。As with working with just the plain ol' SQL, just re-query for the info you want. Use
$table->select('rowid')->where($where)
to do this.来自手册:
这不是你想要的。所以你需要使用 select 来获取行
from manual :
its not what you want. so you need to using select to get the row