作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
谁能告诉我我做错了什么?我正在查询的表是空的,所以我认为游标应该是空的。但相反,它返回具有 1 行和 1 列的游标。即便如此,我不明白为什么会导致错误。我想要做的就是从我的查询中返回单个值(如果存在)。
有人能帮我理解一下吗?谢谢!
Cursor cursor = db.rawQuery("SELECT max(GAME_COLUMN) FROM GAMES_TABLE", null);
if (cursor.moveToNext()) {
System.err.println("why am I here?");
nextGame = cursor.getInt(cursor.getColumnIndex("GAME_COLUMN"));
}
Bad request for field slot 0,-1. numRows = 1, numColumns = 1
最佳答案
这是因为结果中没有名为 GAME_COLUMN 的列。进行查询
SELECT max(GAME_COLUMN) AS GC FROM GAMES_TABLE
然后查询 GC :-
Cursor cursor = db.rawQuery("SELECT max(GAME_COLUMN) AS GC FROM GAMES_TABLE", null);
if (cursor.moveToNext()) {
System.err.println("why am I here?");
nextGame = cursor.getInt(cursor.getColumnIndex("GC"));
}
关于android - SQLite 难以从游标中检索值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13738928/
我想模拟这个函数: function getMetaData(key) { var deferred = $q.defer(); var s3 = vm.ini
我是一名优秀的程序员,十分优秀!