博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android.database.CursorIndexOutOfBoundsException:Index -1 requested, with a size of 1(zz)
阅读量:6250 次
发布时间:2019-06-22

本文共 721 字,大约阅读时间需要 2 分钟。

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

http://blog.csdn.net/competerh_programing/article/details/7396542

 

android 中数据库处理,特别是使用cursor时,注意初始位置,好像是从下标为-1的地方开始的,也就是说一次查询中,返回给cursor查询结果时,不能够马上从cursor中提取值。

比如,下面的代码会返回错误,android.database.CursorIndexOutOfBoundsException:Index -1 requested, with a size of 0:

int score =((Cursor)getReadableDatabase().query(TABLE_NAME,newString[]{

"learned"},"_id=?",newString[]{
""+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();

 

 

你可能感兴趣的文章
Siege——多线程编程最佳实例
查看>>
c# 生成 验证码
查看>>
Selenium学习(4) 键盘操作
查看>>
SQL Server 触发器
查看>>
神奇语言 python 初识面向对象
查看>>
何为SLAM
查看>>
Effective C++ 条款五 了解C++默默编写并调用哪些函数
查看>>
图的存储结构(邻接矩阵)
查看>>
[工具]infolite-chrome插件css插件
查看>>
javascript 深拷贝
查看>>
SwitchHosts—hosts管理利器
查看>>
【代码小记】无
查看>>
【知识点】Java机密
查看>>
如何在 Java 中正确使用 wait, notify 和 notifyAll?
查看>>
BarTender 2016表单中的“秤显示”控件
查看>>
仓库盘:动态盘点
查看>>
全面理解javascript的caller,callee,call,apply概念[转载]
查看>>
C#中使用Monitor类、Lock和Mutex类来同步多线程的执行
查看>>
Jquery 下拉框取值
查看>>
POJ 1287 Networking 【最小生成树Kruskal】
查看>>