Hello boys,
I've a problem with my application, when I try to connect at DB, this error occur: (Table "prova" not found)
this is the code for Read to the db:
I've a problem with my application, when I try to connect at DB, this error occur: (Table "prova" not found)
this is the code for Read to the db:
Code:
public MyDbHelper(Context ctx) {
private SQLiteDatabase db;
try {
db = ctx.openOrCreateDatabase("myDB.db", 0, null);
} catch (SQLiteException e) {
db = ctx.openOrCreateDatabase("NewMyDB.db", 0, null);
db.execSQL("create table prova(_id integer primary key autoincrement)"+"name varchar not null " + "nome2 boolean not null "+"name3 boolean not null "+"name4 boolean not null "+"name5 boolean not null");
db.close();
}