我在WebMatrix中創建了一個數據庫。我已經設置了isIdentity
true
但該表不會自動增加。它給我一個錯誤,說「Insert_Identity關閉」。WebMatrix在
如何打開它?
,我用來創建表
create table Product
(
_ID integer identity not null,
primary key(_ID),
unique(_ID),
Name varchar(50) not null
)
這裏是我的GUI看起來像
然後我嘗試添加的數據表中的SQL代碼
而且發生錯誤。 我已經有了什麼在