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.

I'm using this code to get the count from the cursor. On executing the Select query in SQLite Manager I am getting count as 6.

public int getCount(String name){           
        Cursor cursor;
        cursor = myDataBase.rawQuery(
                "select count(*) as _count from tProviderNode where parentId IN(select identifier from tProviderNode where name='"
                        + name + "');", null);
        return cursor.getInt(cursor.getColumnIndex("_count"));
    }  

On execution of this function I'm getting the following error:-

android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1

Why I'm getting this error? Am I missing anything.

share|improve this question
may be your name is not matching with the db-column's value, it may be possible that your db-col contains white space. – Lucifer Oct 4 '12 at 10:00
2  
a little search before asking the question would have given you the answer in no time – njzk2 Oct 4 '12 at 10:04

2 Answers

up vote 2 down vote accepted

Call cursor.moveToFirst() before you use the Cursor:

// ...
cursor.moveToFirst();
return cursor.getInt(cursor.getColumnIndex("_count"));
share|improve this answer

Call cursor.moveToFirst() to fix the issue.

share|improve this answer

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.