Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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?)

share|improve this question
2  
WHERE God's Kingdom is meaningless. Which field are you trying to match it in? – Graham Borland Apr 3 '12 at 13:42

2 Answers

up vote 4 down vote accepted

You have two problems.

First, your filtering condition (after the WHERE) is not correct. It must compare a column to a value. I'm guessing that you're searching for a record with Game_name equal to the phrase God's Kingdom, is that correct?

Additionally, text strings must appear in single quotes. Any internal single quotes within the string must be escaped by doubling the quote character.

If my assumption about your intention is correct, the proper SQL to use is:

 SELECT DISTINCT _id, Game_name, Book, Chapter, Verse_start, Verse_stop, Scripture 
 FROM Bible_Game WHERE Game_name = 'God''s Kingdom'
share|improve this answer
almost good ... but we shouldnt assuming that ' is escape char so it is better to use parameters ... – Selvin Apr 3 '12 at 13:46
SQL always escapes quotes by doubling them, therefore if you're writing an SQL statement with a specified value it's safe and correct to write the command as above. Parameterized queries are appropriate where you're accepting user input for the comparison value — and not because the escaping character might change but because the user might be attempting to inject malicious SQL into your command. – Larry Lustig Apr 3 '12 at 13:49
Thank you guys, that was a silly mistake. thanks to pointing it out.... cheers. now it works perfectly. btz in @zapl's answer, i dnt have to worry about quotes.... – FlaMM3R Apr 3 '12 at 15:29

The best way to get rid of problems with ' is to escaper them via selectionArgs provided by every database method in Android:

Cursor result = db.rawQuery("SELECT DISTINCT _id, Game_name, Book, Chapter, " +
        "Verse_start, Verse_stop, Scripture FROM Bible_Game WHERE Game_name=?",
        new String[] { "God's Kingdom" });

results in

... WHERE Game_name='God''s Kingdom'
share|improve this answer
Thanks man it works... – FlaMM3R Apr 3 '12 at 15:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.