DROP TABLE IF EXISTS test_counter; CREATE TABLE "test_counter" ( "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "counter" integer NOT NULL ); INSERT INTO test_counter ( id, counter ) VALUES ( 0,0 );