In android I am using the following statement.
model = dataHelper.rawQuery("SELECT _id, engword, lower(engword) as letter FROM word WHERE letter >= 'a' AND letter < '{' AND engword LIKE '%" + filterText + "%'", new String[ {"_id","engword", "lower(engword) as letter"});
It is throwing android.database.sqlite.SQLiteException: bind or column index out of range: handle 0x132330
What is the problem in my code?