SQLite table does not exist exception for existing SQLite database (and table)
- by SK9
I've followed the instructions given here for introducing an existing SQLite database to your Android app.
When I query the table "android_metadata" this is fine. But when I run a similar query on my own table "words" (which has _id for primary integer key) I get a table does not exist exception and the app crashes.
Why is that?
Code:
Cursor c…