I created a database with a table (table1) with Sqlite expert, but with the following code tells me the table1 does not exist, if I open the database with Sqlite is okay.
Please if you can help me.
thanks
Please if you can help me.
thanks
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("culturilla")
SQL1.Initialize(File.DirInternal, "base.db", True)
la1=SQL1.ExecQuery("SELECT pregunta FROM table1 WHERE id=1")
Label1.Text=la1
End Sub