使用游标按列名升序

时间:2014-02-21 09:22:26

标签: android sqlite cursor

Android Studio 0.4.6

您好,

我有以下函数,它应该根据列名以ASC顺序获取数据库的行。但是,它只是按照它们在数据库中列出的顺序获取行。

因此,数据库中的名称应按字母顺序排列。

我认为我的游标查询是正确的,就像调试器中的游标值是:

SQLiteQuery: SELECT _id, name, phone, email FROM friends ORDER BY name ASC

这就是我想要的。然后我将光标设置到第一行并循环遍历它们直到我到达最后一行。

但是,它不会以字母顺序显示名称。

private void loadDB() {
        Cursor cursor = db.query(FriendContract.TABLE,
                new String[] {FriendContract.Column.ID, FriendContract.Column.NAME, FriendContract.Column.PHONE, FriendContract.Column.EMAIL},
                null, null, null, null, FriendContract.Column.NAME + " ASC");

        /* Check if database is empty */
        if(cursor.getCount() == 0) {
            /* There are no rows to load - so just return */
            Log.d(TAG, "loadDB() cursor.getCount() == 0. There are no rows, just just refresh listview");
            adapter.notifyDataSetChanged();
            return;
        }

        /* Clear all items from array list -
            we are going to fill this with the content of the database */
        friendsList.clear();
        Friend friend;

        cursor.moveToFirst();
        while(!cursor.isAfterLast()) {
            friend = new Friend();
            friend.setId(cursor.getLong(0));
            friend.setName(cursor.getString(1));
            friend.setPhone(cursor.getString(2));
            friend.setEmail(cursor.getString(3));
            /* Add this to the list of friends */
            friendsList.add(friend);
            cursor.moveToNext();
        }

        /* Clean up */
        cursor.close();

        /* Refresh the listview with the loaded friends */
        adapter.notifyDataSetChanged();
    }

1 个答案:

答案 0 :(得分:0)

上述问题的代码按预期工作。