sql >> Base de Datos >  >> RDS >> SQLite

No se crea la tabla de la base de datos SQLite de Android

Use el espacio adecuado antes de "texto" como sigue:

 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);";