SELECT DISTINCT _id, Game_name, Book, Chapter, Verse_start, Verse_stop, Scripture
FROM Bible_Game WHERE God's Kingdom
i have above code in sqlite select statement and it gives me following error.
android.database.sqlite.SQLiteException: unrecognized token: "'s Kingdom": , while compiling: SELECT DISTINCT _id, Game_name, Book, Chapter, Verse_start, Verse_stop, Scripture FROM Bible_Game WHERE God's Kingdom
how can i solve this problem (how can i use escape character in sqlite?)
WHERE God's Kingdomis meaningless. Which field are you trying to match it in? – Graham Borland Apr 3 '12 at 13:42