SQLite
 sql >> Datenbank >  >> RDS >> SQLite

Android SQLite-Datenbanktabelle wird nicht erstellt

Verwenden Sie den richtigen Abstand vor "Text" wie folgt:

 String newTableQueryString = "create table "
                    + TABLE_N_AND_A + " ("
                    + TABLE_ROW_ID
                    + " integer primary key autoincrement not null,"
                    + TABLE_ROW_NAME
                    + " text not null,"
                    + TABLE_ROW_AGE
                    + " text not null);";