1
我怎麼能執行這個SQL在如下內容提供商:東西如何一批ContentProvider的更新DATAS,弄得我
update dtrips set dtp_day_idx=dtp_day_idx+2 where tp_id=1
誰能幫我修復代碼
DTrip dTrip = new DTrip();
ContentValues values = createContentValues(dTrip);
values.put("dtp_day_idx" ,...);
String select ="tp_id="+tripId;
mContentResolver.update(UsersColumns.CONTENT_URI, values, select, null);
感謝。