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()才能指到第一个值。
时间: 2024-10-14 16:57:43