Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

2 Answers

up vote 20 down vote accepted

The right statement is :

model = dataHelper.rawQuery("SELECT _id, engword, lower(engword) as letter FROM word WHERE letter >= 'a' AND letter < '{' AND engword LIKE ? ORDER BY engword ASC",new String[] {"%" + filterText + "%"});
share|improve this answer

You provided 3 parameters but you have no ? in your query. Pass null instead of string array as the 2nd argument to the rawQuery or replace _id, engword and lower(engword) as letter in your select string by ?

1)

model = dataHelper.rawQuery("SELECT ?, ?, ? FROM word WHERE letter >= 'a' AND letter < '{' AND engword LIKE '%" + filterText + "%'",new String[] {"_id","engword", "lower(engword) as letter"});

2)

model = dataHelper.rawQuery("SELECT _id, engword, lower(engword) as letter FROM word WHERE letter >= 'a' AND letter < '{' AND engword LIKE '%" + filterText + "%'", null);

Edit: As @Ewoks pointed out, the option (1) is incorrect, since prepared statements can get parameters (?s) only in WHERE clause.

share|improve this answer
what should be the statement : model = dataHelper.rawQuery("SELECT ?, ? FROM word WHERE lower(engword) >= 'a' AND lower(engword) < '{' AND engword LIKE '%" + filterText + "%'",null); – dev_android Apr 19 '11 at 13:43
Added code snippets to my answer – ernazm Apr 19 '11 at 14:05
@dev_android u can add ?s (parameters) just in WHERE clause.. – Ewoks Dec 4 '12 at 8:56
@Ewoks thank you, that's correct. I should edit the answer. – ernazm Dec 4 '12 at 15:45
ur welcome.. I spent good part of today trying to make parameters and rawQuery work.. This was not my issue but it will help somebody ;) Cheers – Ewoks Dec 4 '12 at 16:35

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.