如何在 CL-SQL 中使用自动增量主键?
我正在将 CL-SQL 与 SQLite 后端一起使用,但我无法完全让自动增量主键正常工作。我声明了一个像(在 def-view-class 中)这样的槽:
((id :accessor d-id :db-constraints :primary-key :type integer :db-type "INTEGER")
但是如果我创建该类,该字段不会更新,即使我调用 update-records-from-instance 也不会更新,并且如果我调用 update-instance-from-记录,它会更新错误。有没有办法使用自动增量字段 CL-SQL?
I am using CL-SQL with SQLite backend, and I can't quite get autoincremented primary keys to work. I declared a slot like (in def-view-class):
((id :accessor d-id :db-constraints :primary-key :type integer :db-type "INTEGER")
But if I create the class, the field is not updated, not even when I call update-records-from-instance, and if I call update-instance-from-records, it will get updated wrong. Is there a way to use autoincremented fields CL-SQL at all?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这可能是由一个错误引起的。我已向 clsql 邮件列表发送了一个 补丁 来解决该问题为我:
I think this might be caused by a bug. I've sent a patch to the clsql mailing list which fixes the problem for me: