我在 WebMatrix 中创建了一个数据库。而且我已经设置了isIdentity
true
但表格不会自动递增。它给了我一个错误,说“Insert_Identity 已关闭”。
我如何打开它?
我用来创建表的 SQL 代码
create table Product
(
_ID integer identity not null,
primary key(_ID),
unique(_ID),
Name varchar(50) not null
)
这是我的 GUI 的样子
然后我尝试将数据添加到表中
并且错误发生了。我不知道发生了什么