gpt4 book ai didi

java - 光标没有给出任何答案

转载 作者:行者123 更新时间:2023-12-02 04:54:45 25 4
gpt4 key购买 nike

我想创建一个 SQLite-DB 函数来获取一个条目的信息,但没有给出任何答案。 (所以只是提一下,我是新手)

public Infopw getInfo(int id) {
SQLiteDatabase db = this.getReadableDatabase();
String selectQuery = "SELECT * FROM " + TABLE_ACCOUNTS+" WHERE " +
COLUMN_ID + " = "+id+";";
Infopw in = new Infopw();
Cursor cursor = db.rawQuery(selectQuery, null);
if (cursor != null) {
String s = "w";
if (cursor.moveToFirst()) {
s =cursor.getString(cursor.getColumnIndex(COLUMN_SERVER));
}
cursor.close();

Log.d(TAG ,s);
}

return in;
}

这是我的代码,但它只是不执行任何操作,并且日志消息确实打印出“w”而不是 cursor.getString(cursor.getColumnIndex(COLUMN_SERVER)); I尝试在一个条件中执行 2 个 if 条件,但结果相同。

最佳答案

不要在 rawQuery 中添加最后一个分号。

您应该按以下方式使用光标对象。

Cursor cursor = db.rawQuery(selectQuery, null);
if (cursor != null) {
String s = "w";
while (cursor.moveToNext()) { //use while and not if, to get all the rows
s =cursor.getString(cursor.getColumnIndex(COLUMN_SERVER));
}
//cursor.close(); Don't close it when the data is still being fetched

Log.d(TAG ,s);
}
cursor.close(); //You can close it now after data is fetched

关于java - 光标没有给出任何答案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56416701/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com