无法访问sqlite数据库中的数据

时间:2014-06-13 20:36:40

标签: android sqlite android-sqlite

我写了这个函数,它接收post id并找到last name的{​​{1}}。当我运行时我得到错误:

  

database.cursorIndexOutOfBoundsException:请求索引0,大小为0

有什么问题?

post id

1 个答案:

答案 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();