DBeaver-很多版本自增加不了ID,报错“[SQLITE_ERROR] SQL error or missing database (AUTOINCREMENT is only allowed on an INTEGER PRIMARY KEY)”
Error creating new object
原因:
Cannot invoke "org.jkiss.dbeaver.model.struct.DBSObject.getDataSource()" because "container" is null
CREATE TABLE [Invoice2]
([InvoiceId] INTEGER NOT NULL,[CustomerId] INTEGER NOT NULL,[InvoiceDate] DATETIME NOT NULL,[BillingAddress] NVARCHAR(70),[BillingCity] NVARCHAR(40),[BillingState] NVARCHAR(40),[BillingCountry] NVARCHAR(40),[BillingPostalCode] NVARCHAR(10),[Total] NUMERIC(10,2) NOT NULL,CONSTRAINT [PK_Invoice2] PRIMARY KEY ([InvoiceId]),FOREIGN KEY ([CustomerId]) REFERENCES [Customer] ([CustomerId]) ON DELETE NO ACTION ON UPDATE NO ACTION
);
通过DBeaver 给Postgre SQL表 设置主键自增_bdeaver postgresql自增列-CSDN博客