批量删除Android中包含Content Provider的项目

时间:2012-07-12 18:55:23

标签: android android-contentprovider android-contentresolver

我正在尝试批量删除表格中的某些项目。

    String ids = { "1", "2", "3" };

    mContentResolver.delete(uri, MyTables._ID + "=?", ids);

但是我一直收到以下错误

  

java.lang.IllegalArgumentException:绑定参数太多。提供了3个参数,但声明需要1个参数。

3 个答案:

答案 0 :(得分:19)

您可以在一次交易中使用ContentProviderOperation批量删除/插入/更新。你不必连接字符串就好多了。它也应该非常有效。删除:

    ArrayList<ContentProviderOperation> operations = new ArrayList<ContentProviderOperation>();
    ContentProviderOperation operation;

    for (Item item : items) {

        operation = ContentProviderOperation
                .newDelete(ItemsColumns.CONTENT_URI)
                .withSelection(ItemsColumns.UID + " = ?", new String[]{item.getUid()})
                .build();

        operations.add(operation);
    }

    try {
        contentResolver.applyBatch(Contract.AUTHORITY, operations);
    } catch (RemoteException e) {

    } catch (OperationApplicationException e) {

    }

答案 1 :(得分:10)

发生错误是因为在where子句中有一个占位符(?),而传递了三个参数。你应该这样做:

String ids = { "1", "2", "3" };

mContentResolver.delete(uri, MyTables._ID + "=? OR " + MyTables._ID + "=? OR " + MyTables._ID + "=?", ids);

我不知道SQLite是否支持IN子句,如果是这样,你也可以这样做:

String ids = { "1, 2, 3" };

mContentResolver.delete(uri, MyTables._ID + " IN (?)", ids);

答案 2 :(得分:0)

String sqlCommand = String.format("DELETE FROM %s WHERE %s IN (%s);", TABLE_NAME, KEY_ID, 1,2,3);

db.execSQL(sqlCommand);