I am using Mozila extension SQLite Manager to create a database and use it in my app.
I created a table named test.
Then I read the data using the following line and it succeed.
My question is: "testing" should be the name of table right?
But when I use "select * from test"
it reads nothing.
Initially I named the table as "testing".
Cursor cursor=dbHelper.QueryData("select * from testing");