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

【解决】android.database.CursorIndexOutOfBoundsException:Index -1 requested, with a size of 0  

2012-02-18 21:57:34|  分类: Android开发 |  标签:android  cursor  解决  |字号 订阅

android 中数据库处理,特别是使用cursor时,注意初始位置,好像是从下标为-1的地方开始的,也就是说一次查询中,返回给cursor查询结果时,不能够马上从cursor中提取值。
比如,下面的代码会返回错误,android.database.CursorIndexOutOfBoundsException:Index -1 requested, with a size of 0:

int score = ((Cursor)getReadableDatabase().query(TABLE_NAME, new String[]{"learned"}, "_id=?", new String[]{""+id}, null, null, null,"1")).getInt(0);


正确的用法:

Cursor cursor = getReadableDatabase().query(TABLE_NAME, new String[]{"learned"}, "_id=?", new String[]{""+id}, null, null, null,"1");
int learned=0;
if(cursor.moveToFirst()){
score= cursor.getInt(0);
}
cursor.close();

你可能感兴趣的:(android,数据库,String,table,null)