MDB2自动准备问题
我的网站使用 mdb2,但遇到了问题。我的表中有一个 order_no 字段,我希望有一个像 LAST_INSERT_ID() + 1 这样的默认值。是否有可以为 mdb2->autoExecute 的此类 mysql 函数设置的数据类型?
谢谢。
I am using mdb2 for my website and i ran into a problem. I have an order_no field in my table that i would like to have a default value like LAST_INSERT_ID() + 1. Is there a datatype that can be set for this kind of mysql functions for mdb2->autoExecute?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,因为无法将 (LAST_INSERT_ID() + 1) 作为占位符提供给查询,这就是 自动准备/自动执行。
No, because there is no way to provide (LAST_INSERT_ID() + 1) to the query as a placeholder which is what AutoPrepare/AutoExecute does.