Column _id Doesn't Exist Error Though It Exists In Table
I am repeatedly getting getting java.lang.IllegalArgumentException: column '_id' does not exist and app is getting crashed though I have included _ID in table columns and query. He
Solution 1:
As far as Android SQLite is concerned, column names are case sensitive. You need _id
not _ID
. (In plain SQL the identifiers are not case sensitive.)
Post a Comment for "Column _id Doesn't Exist Error Though It Exists In Table"