我在Android上遇到SQL查询结果时出现意外的不一致。
给出以下Schema(非常简单):
public static final String TABLE_TOTD = "totd";
public static final String COLUMN_ID = "id";
public static final String COLUMN_TG = "tg";
public static final String COLUMN_EX = "ex";
private static final String DATABASE_NAME = "TOTD.db";
private static final String DATABASE_CREATE = "CREATE TABLE "
+ TABLE_TOTD + "("
+ COLUMN_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, "
+ COLUMN_TG + " TEXT NOT NULL, "
+ COLUMN_EX + " TEXT"
+ ");";
数据库正在初始化并填充了一些示例文本:
SQLiteDatabase db = mdbHelper.getWritableDatabase();
ContentValues values = new ContentValues();
values.put(MySQLiteHelper.COLUMN_TG, "This is a text (1)");
values.put(MySQLiteHelper.COLUMN_EX, "Example goes here");
db.insert(MySQLiteHelper.TABLE_TOTD, null, values);
[...]
使用SQLiteDatabase.query()查询时,我正在检索不一致的结果 下面的代码通过返回带有表的第一行的Cursor来完成预期的操作。
String[] projection = null;
String selection = "id = 1";
String[] selectionArgs = null;
Cursor cursor = db.query(
MySQLiteHelper.TABLE_TOTD,
projection,
selection,
selectionArgs,
null, null, null);
通过像这样更改selection
和selectionArgs
来完全相同:
String selection = "id = ?";
String[] selectionArgs = {"1"};
但是现在,与预期不同,通过执行以下更改,返回的Cursor现在将为空:
String selection = "? = ?";
String[] selectionArgs = {"id", "1"};
实际上,尝试将不是"1"
的任何内容推送到参数中将导致查询返回空游标。
我尝试了以下内容:
String selection = "? = 1";
String[] selectionArgs = {"id"};
String selection = "id ? 1";
String[] selectionArgs = {"="};
String selection = "?";
String[] selectionArgs = {"id = 1"}; //This is where I couldn't take it anymore...
现在,我对这方面的任何解释持开放态度。我的代码有效,而且我知道我可以将所有参数放在selection
字符串上,因为它们不包含任何禁用字符。
我只是想知道,为什么它不起作用,为什么没有提到开发者文档的明显限制?
答案 0 :(得分:0)
selection参数是sqlite查询的WHERE
子句。用?执行查询时?它将在selectionArgs String数组中查看此参数。但是,您只能将值指定为?而不是关键。一些有效的例子:
String selection = "id = ?";
String[] selectionArgs = new String[]{"1"};
类似于
String selection = "id = 1";
String[] selectionArgs = null;
然而你无法做到
String selection = "? = ?";
您还可以指定多个?在选择中。
String selection = "id = ? AND carId = ?";
String[] selectionArgs = new String[]{"1", "2"};
来自文档:
您可以在选择中包含?,它将被值替换 来自selectionArgs,以便它们出现在选择中。该 值将绑定为字符串。