码迷,mamicode.com
首页 > 移动开发 > 详细

android 出现Make sure the Cursor is initialized correctly before accessing data from it

时间:2014-10-17 23:17:55      阅读:8377      评论:0      收藏:0      [点我收藏+]

标签:android   style   http   color   io   java   for   sp   数据   

Make sure the Cursor is initialized correctly before accessing data from it

详细错误是:java.lang.IllegalStateException: Couldn‘t read row 0, col 2 from CursorWindow.  Make sure the Cursor is initialized correctly before accessing data from it.

出现这个原因是因为我在获取Cursor中的字段时,获取了一个不存在的字段,例如,我原本要获取数据库book表中的bookId字段,结果获取的时候写成了bookiD,

while (cursor.moveToNext()) {  
 int bookId = cursor.getInt(cursor.getColumnIndex("bookiD"));
}

注意:Android是区分大小写的,所以我们在获取的时候也要严格按照数据库表字段的大小写来获取数据

 



android 出现Make sure the Cursor is initialized correctly before accessing data from it

标签:android   style   http   color   io   java   for   sp   数据   

原文地址:http://www.cnblogs.com/aibuli/p/2c143a1440c9d1b21b58e65a07eb0ef8.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!