SQLite 中的自动增量与 Subsonic 3
这可能是一件简单的事情,但是当我创建一个新对象时,ID 属性从 0 而不是 null 开始。据我了解,SQLite 采用/需要 PK 列的 null 值来执行自动增量。
所以简单的问题是如何获取对象中的 ID 以 null 开始生命?
谢谢 库特
This is probably a simple matter, but when I create a new object, the ID property starts off as 0 rather than null. As I understand it, SQLite takes/needs a value of null for the PK column to do the AutoIncrement.
So the short question is how to get the ID in the object to start life as null?
Thanks
cooter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,这就是解决方案。创建带有 PK 的表后,打开表,右键单击关键图像所在的最左边的列,您可以选择编辑键/关系。在该属性屏幕中,您可以将列设置为自动增量。
我还遵循了此页面。
中最优秀的工具完成的
这一切都是使用sqlite.phxsoftware.com/-Cooter
Ok, here's what the solution seems to be. After you create the tables with PK's, open the table, right click on the left most column where the key image is and you can choose to edit Keys/Relationships. In that property screen you can set the column to auto-increment.
I also followed advice on this page.
This is all done using the most excellent tools from sqlite.phxsoftware.com/
-Cooter