Hi,
I want to know how to specify something like in my database adapter:
Select * from _myTable WHERE _columnValue IN ('2','3','4');
Is there a way to use any of the existing query methods specified in SQLiteDatabase? I can write the query in pure sql, but wondering whether there is a better (and easier) way to accomplish what I am after.
Thanks!