内容提供者更新所有行

时间:2012-03-29 20:38:15

标签: android sqlite android-contentprovider

在内容提供商上工作,我遇到了问题。当我尝试通过内容提供程序更新SQLite数据库中的某一行时,它会更新所有行中的列,而不仅仅是我指定的行。我知道CP正在运行,因为我可以访问它,使用它填充listview,并更改列的内容,但从不只是一列。

以下是相关的更新方法

public int update(Uri url, ContentValues values, String where,
            String[] whereArgs) {
        SQLiteDatabase mDB = dbHelper.getWritableDatabase();
        int count;
        String segment = "";
        switch (URL_MATCHER.match(url)) {
        case ITEM:
            count = mDB.update(TABLE_NAME, values, where, whereArgs);
            break;
        case ITEM__ID:
            segment = url.getPathSegments().get(1);
            count = mDB.update(TABLE_NAME, values,
                    "_id="
                            + segment
                            + (!TextUtils.isEmpty(where) ? " AND (" + where
                                    + ')' : ""), whereArgs);
            break;

        default:
            throw new IllegalArgumentException("Unknown URL " + url);
        }
        getContext().getContentResolver().notifyChange(url, null);
        return count;
    }

这是我用来(尝试)更新它的代码。

ContentValues mUpdateValues = new ContentValues();

mUpdateValues.put(ContentProvider.HAS, "true");
mUpdateValues.put(ContentProvider.WANT, "false");

mRowsUpdated = getContentResolver().update(Uri.parse(ContentProvider._ID_FIELD_CONTENT_URI
+ rowId), mUpdateValues, null, null);

这是URI

URL_MATCHER.addURI(AUTHORITY, TABLE_NAME + "/#", ITEM__ID);

谢谢,任何帮助都将不胜感激。

编辑我也试过

mRowsUpdated = getContentResolver().update(
                    ContentProvider._ID_FIELD_CONTENT_URI, mUpdateValues,
                    null, null);

mRowsUpdated = getContentResolver().update(
                    ContentProvider.CONTENT_URI, mUpdateValues,
                    null, null);

1 个答案:

答案 0 :(得分:2)

您没有指定WHERE子句,该子句仅用于更新特定行。除非您指定条件,否则内容提供程序的默认行为是更新所有行。

来自文档: developer.android.com/reference/android/content/ContentResolver.html

Parameters
uri     The URI to modify.
values  The new field values. The key is the column name for the field. A null value will remove an existing field value.
where   A filter to apply to rows before updating, formatted as an SQL WHERE clause (excluding the WHERE itself).