gpt4 book ai didi

android - 来自 SQLite 查询的 CursorIndexOutOfBoundsException

转载 作者:行者123 更新时间:2023-11-29 18:44:43 26 4
gpt4 key购买 nike

我一直在努力使用我的一个表字段查询我的 SQLite 数据库。我使用 ForeignId 字段成功查询,但没有使用我的表 QuizTableAvailable 字段。我希望你能指出我错过的事情。这是我对函数 queryQuiz 的调用。请注意 whereClause(有点截断),它应该为 1 的值过滤 available 字段。 (旁注:如果你想查询不同的数据类型怎么办?)

QuizCursorWrapper cursor = db.queryQuiz(QuizTable.Cols.AVAILABLE + "=?", new String[]{"1"}); 

这是我在扩展 SQLiteOpenHelper 的类中的 queryQuiz 函数。这是我在调用 queryQuiz 时遇到的错误:引起:android.database.CursorIndexOutOfBoundsException:请求索引 0,大小为 0

public QuizCursorWrapper queryQuiz(String whereClause, String[] whereArgs){
Cursor cursor = db.query(
QuizTable.NAME,
null,
whereClause,
whereArgs,
null,
null,
null
);
return new QuizCursorWrapper(cursor);
}

我的 QuizCursorWrapper

public class QuizCursorWrapper extends CursorWrapper {
public QuizCursorWrapper(Cursor cursor){
super(cursor);
}

public String getQuiz(){
String paragraph = getString(getColumnIndex(QuizSchema.QuizTable.Cols.PARAGRAPH));
return paragraph;
}
public String getQuizUUID(){
String uuid = getString(getColumnIndex(QuizSchema.QuizTable.Cols.UUID));
return uuid;
}
}

最后,我的 QuizSchema 定义了我表中的字段。

public class QuizSchema {
public static final class QuizTable{
//nested class
public static final String NAME = "quizTable";
public static final class Cols{
public static final String SCORE = "score";
public static final String PARAGRAPH = "paragraph";
public static final String FOREIGNID = "foreignId";
public static final String UUID = "uuid";
public static final String AVAILABLE = "available";
}
}
}

我很困惑,因为我可以清楚地看到在我的测验表中 available 字段等于 1 的行。很抱歉这个广泛的问题,只是我不能指出问题,调试器也不是很有帮助。如果您需要更多信息,请告诉我。

enter image description here

最佳答案

我认为您的问题是列存储类/类型亲和性如何影响比较。

解决方案是强制类型亲和性以及如何进行比较。可以使用 CAST 设置类型亲和性来强制类型亲和。

这样的解决方案可能是CAST 值以键入INTEGER 进行比较。您可以使用 :-

QuizCursorWrapper cursor = db.queryQuiz("CAST(" + QuizTable.Cols.AVAILABLE + " AS INTEGER) =CAST(? AS INTEGER)", new String[]{"1"});

您可能希望阅读:-

Datatypes In SQLite Version 3

关于android - 来自 SQLite 查询的 CursorIndexOutOfBoundsException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52240673/

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