将PreparedStatement与Sqlbrite

时间:2017-03-02 06:25:14

标签: android android-sqlite sqlbrite

我正在迁移所有与sql相关的代码以使用Sqlbrite。目前我的代码看起来像这样:

Cursor cursor;
String name;
String[] selectionArgs = { name };
cursor = database.query(MySQLiteHelper.TABLE_USER, new String[] {"id"}, "name = ? COLLATE NOCASE AND ", selectionArgs, null, null, null);

现在我需要使用SqlBrite,但我想使用Prepared Statement。有什么方法可以做到这一点吗?我用谷歌搜索'SqlBrite PreparedStatement'但找不到任何相关的内容。

1 个答案:

答案 0 :(得分:1)

是的,您可以在executeInsert的实例上使用executeUpdateDeleteBriteDatabase。他们接受SQLiteStatement作为参数。