我写了这个函数,它接收post id
并找到last name
的{{1}}。当我运行时我得到错误:
database.cursorIndexOutOfBoundsException:请求索引0,大小为0
有什么问题?
post id
答案 0 :(得分:0)
试试这个,
SQLiteDatabase db = database.getReadableDatabase();
Cursor cursor = db.rawQuery("query", null);
// looping through all rows and adding to list
if (cursor.moveToFirst())
{
do
{
// write your code
} while (cursor.moveToNext());
}
database.close();