Hi!
I am having a weird problem with SQLite, the database is in my device but when I try to do any SQL to this I get always NULL and I get this error:
android.database.sqlite.SQLiteException: no such table: t_ganadores: DELETE FROM t_ganadores
But if I check my database with a SQLiteBrowser all my tables there are.
B4a tell me there is no tables in my DB
av = SQL.ExecQuerySingleResult("Select count(*) from sqlite_master where Type = 'table' and name='t_ganadores';")
Av has the value of 0
Thinks B4a doesnt understand the tables into DB
I am having a weird problem with SQLite, the database is in my device but when I try to do any SQL to this I get always NULL and I get this error:
android.database.sqlite.SQLiteException: no such table: t_ganadores: DELETE FROM t_ganadores
But if I check my database with a SQLiteBrowser all my tables there are.
B4a tell me there is no tables in my DB
av = SQL.ExecQuerySingleResult("Select count(*) from sqlite_master where Type = 'table' and name='t_ganadores';")
Av has the value of 0
Thinks B4a doesnt understand the tables into DB