我正在使用带有 SQLite 后端的 CL-SQL,但我无法让自动递增的主键正常工作。我声明了一个插槽,例如(在 def-view-class 中):
((id :accessor d-id :db-constraints :primary-key :type integer :db-type "INTEGER")
但是如果我创建类,该字段不会更新,即使我调用 update-records-from-instance,如果我调用 update-instance-from-records,它会更新错误。有没有办法使用自动增量字段 CL-SQL?