android.database.sqlite.SQLiteException: near "mull": syntax error (code 1): , while compiling: create table contacts (id integer primary key not mull auto_increment
自動インクリメントPK列の正しい宣言は、integer primary key autoincrement
です。 、integer primary key not mull auto_increment
。 null
にタイプミスがあります およびnot null
必須ではありません。 sqlite autoincrement
にはアンダースコアはありません 。