I can\'t get WHERE IN clause to work on android SQLite database.
Is there any way to execute a statement like this in android? :
SELECT body FROM ta
If you are using a content provider you can use the query function as such:
getContentResolver().query(URI,new String[] {"body"}, "title IN ?", new String[] {"('title1','title2','title3')"}, null)
Note that I have not tested this, but according to the documentation, this should work.