android.database.sqlite.SQLiteException: near "mull": syntax error (code 1): , while compiling: create table contacts (id integer primary key not mull auto_increment
Správná deklarace pro sloupec PK s automatickým přírůstkem je integer primary key autoincrement
, nikoli integer primary key not mull auto_increment
. Máte překlep v null
a not null
není nutné. autoincrement
sqlite neobsahuje žádné podtržítko .