create table "LockTable" ( LockID integer primary key, LockTable varchar(255) NOT NULL, LockTime datetime NULL); insert into "LockTable" values (0, '', NULL); insert into "LockTable" values (1, 'MyTable', NULL);