Android+SQLite:我遇到的坑

我在创建表、添加表数据的时候一切正常,但是在查询表全部数据的时候就开始疯狂报错。。。。

我的代码:

public ArrayList getAllUsers(){
    Log.e("message","查询表数据");
    ArrayList users = new ArrayList<>();

    //Cursor cursor = sqLiteDatabase.query("user",null,null,null,null,null,"'username' DESC");
   // Cursor cursor = sqLiteDatabase.rawQuery("SELECT * FROM user",null);
    Cursor cursor = sqLiteDatabase.query("user",null,null,null,null,null,"name");
    while (cursor.moveToNext()){
        String username = cursor.getString(cursor.getColumnIndex("name"));
        String password = cursor.getString(cursor.getColumnIndex("password"));

        users.add(new User(username,password));
    }
    return users;
}

我遇到的报错:

Couldn’t read row 0, col -1 from CursorWindow. Make sure the Cursor is initialized correctly before accessing data from it

又或者是
no such column xxx之类的。。。。

一开始我百思不得其解,后来把db文件导出来打开一看好像貌似也没有问题/。。。。第二天再看,好像表里的字段名称是name而我代码里写的是username。。。。于是改掉,然后就好了。。。。

然而我还是迷迷糊糊的。。。。

还有,在SQLite里写SQL语句时,还是尽量大写吧。。。

你可能感兴趣的:(Android)