Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My question is why this query does not work?

Cursor c = db.rawQuery("SELECT * FROM tbl_staff WHERE PMajor = '%" + spin.getSelectedItem().toString() + "%'", null);

Cursor c: it is a cursor for handling my query

tbl_staff: my table that consist of PName, PMajor, PCert

spin: is spinner that has values which I need for my database query.

When I use:

if (c.moveToNext())
else (log.d("error query","couldn't do the query!");)

It goes to else statement and moveToNext() doesn't work.

share|improve this question
Did you exec the moveToFirst() method first? – fedepaol Nov 15 '12 at 11:06
what do you mean? if you mean using it in if statement and having some codes then yes – user1290467 Nov 15 '12 at 13:10
As per developer.android.com/training/basics/data-storage/… , you should call moveToFirst() to place the cursor on the first entry. – fedepaol Nov 15 '12 at 22:16
indeed, I have put moveToFirst() but still no result. – user1290467 Nov 16 '12 at 0:55

1 Answer

Instead of using =, which checks for equality, use keyword LIKE, which matches a pattern.

Cursor c = db.rawQuery("SELECT * FROM tbl_staff WHERE PMajor LIKE '%" + spin.getSelectedItem().toString() + "%'", null);
share|improve this answer
Hello SQL-Injection – CodesInChaos Nov 15 '12 at 11:14
same result with "LIKE" – user1290467 Nov 15 '12 at 13:09

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.