Android +同步适配器+内容提供商更新操作失败

时间:2015-10-19 18:39:49

标签: android android-contentprovider android-syncadapter

我正在使用Android Sync Adapter框架将本地数据库与远程数据库同步。在onPerformSync中,我有一个(ContentProviderClient提供程序)实例,它使用本地数据库完成所有工作。要访问正确的数据库,我必须提供内容Uri(在我的例子中是ServiceContract.CHECKINS_DATA_URI - content:// authority / checkins)它在查询操作中工作正常,但是当我尝试更新时DB我收到错误:

    android.database.sqlite.SQLiteException: near "SET": syntax error (code 1): , while compiling: UPDATE  SET status=?,timestamp=?,user_id=?,checking_id=? WHERE timestamp = ?

UPDATE和SET运算符之间缺少表名。这有点神秘,因为我使用了适当的Uri。您认为会导致此错误的原因是什么?

公共类SyncAdapter扩展了AbstractThreadedSyncAdapter {

ContentResolver mContentResolver;
SvcController mController;

public SyncAdapter(Context context, boolean autoInitialize) {
    super(context, autoInitialize);

    mContentResolver = context.getContentResolver();
    mController = new SvcController(context.getApplicationContext());
}

public SyncAdapter(Context context, boolean autoInitialize, boolean allowParallelSyncs) {
    super(context, autoInitialize, allowParallelSyncs);

    mContentResolver = context.getContentResolver();
}

@Override
public void onPerformSync(Account account,
                          Bundle extras,
                          String authority,
                          ContentProviderClient provider,
                          SyncResult syncResult) {

    ContentValues cv;
    String[] projection;
    String selection;
    String[] selectionArgs;
    Uri uri;

...

    // updates checkin_id in local db
    uri = ServiceContract.CHECKINS_DATA_URI;
    selection = "timestamp = ?";

    for (CheckIn ci : checkins){

        cv = ci.toContentValues();
        selectionArgs = new String[]{String.valueOf(ci.getTimestamp().getTime())};

        try {
            provider.update(uri, cv, selection, selectionArgs);
        } catch (RemoteException e) {
            e.printStackTrace();
        }
    }
}

}

1 个答案:

答案 0 :(得分:1)

我终于知道发生了什么。我是Sync Adapter框架的新手,所以我没有清楚地意识到它是如何工作的。同步适配器中的UPDATE方法实际上是我用于处理本地数据库的常规内容提供程序的UPDATE方法。它之前没有经过测试。