在SQLiteDatabase.query()中使用String selectionArgs
如何在SQLiteDatabase.query()
使用String[] selectionArgs
? 我希望我可以把它设置为null
,因为我没有用。 我只是试图从数据库加载一个完整的未分类的表格到Cursor
。 有关如何实现这一目标的任何build议?
selectionArgsreplaceselectstring中的任何问号。
例如:
String[] args = { "first string", "second@string.com" }; Cursor cursor = db.query("TABLE_NAME", null, "name=? AND email=?", args, null);
至于你的问题 – 你可以使用null
是的,您可以将所有参数设置为空,除了表名。
例如:
Cursor cursor = db.query("TABLE_NAME", null, null, null, null, null, null);