android.database.sqlite.SQLiteException: near "mull": syntax error (code 1): , while compiling: create table contacts (id integer primary key not mull auto_increment
La dichiarazione corretta per una colonna PK di autoincremento è integer primary key autoincrement
, not integer primary key not mull auto_increment
. Hai un errore di battitura in null
e il not null
non è richiesto. Non c'è underscore in sqlite autoincrement
.