I am quering to my SQLite data base to get records using IN operator
myDataBase.rawQuery("SELECT * FROM artist WHERE artist_id IN (?)", values);
but i am getting some SQLite exception. i did not understand what the problem is when my database has 1 record which was returned by this query then it was prefect, but when i have 2 or more records in my database to return by this query it is throwing some exception that exception is
SQLiteException: bind or column index out of range
please let me know what i am doing wrong with this query
thanks...