SQLite游标(Cursor)错误
本文地址: http://blog.csdn.net/caroline_wendy
错误:android.database.CursorIndexOutOfBoundsException:Index -1 requested, with a size of 1
游标(cursor)的起始位置是-1,不能直接使用。
需要cursor.moveToFirst()或cursor.moveToNext()才能指到第一个值。

Android - SQLite游标(Cursor)错误
原文:http://blog.csdn.net/caroline_wendy/article/details/41510457