获取光标的结果并将其转换为 TextView 的字符串

Getting the result of cursor and turning it into a string for TextView

这是我的查询:

Cursor nextdate(String Date) {
    SQLiteDatabase db = this.getReadableDatabase();
    String[] params = new String[]{String.valueOf(Date)};
    Cursor cur = db.rawQuery(" SELECT MIN (" + colDateDue + ") FROM " + PAYMENTS + " WHERE " + colDateDue + ">=?", params);
    cur.moveToFirst();
    return cur;
}

我想在 TextView 中显示该查询的结果,但我不知道该怎么做,所以我自然会寻找答案。我找到了一些答案并想出了这个:

DatabaseHelper db = new DatabaseHelper(this);
String str = "";
    if (c!= null) {
        if (c.moveToFirst()) {
            str = c.getString(c.getColumnIndex(db.colDateDue);
        }
    }
TextView.setText(str);

但我收到错误

Caused by: java.lang.IllegalStateException: Couldn't read row 0, col -1 from CursorWindow.  Make sure the Cursor is initialized correctly before accessing data from it.

这让我有点困惑,因为该错误的通常修复方法是使用 cur.moveToFirst();,它在两种情况下都使用...我到底做错了什么?

这样试试:

将列索引保持为 0,因为该游标将只有一列。

DatabaseHelper db = new DatabaseHelper(this);
String str = "";
    if (c!= null) {
        if (c.moveToFirst()) {
            str = c.getString(0);
        }
    }
TextView.setText(str);

您正在尝试使用 db.colDateDue 的索引。但是,这与您的实际查询无关。您可以愉快地拉取第一个结果:

str = c.getString(0);