我想将sqlite
中的id值与来自json webservice的TAG_ID
值进行比较。我只是坚持这样做。
到目前为止我尝试过的是
class LoadAll extends AsyncTask<String, String, String>
{
protected String doInBackground(String... args)
{
Log.i("url ",url_all_products);
List<NameValuePair> params = new ArrayList<NameValuePair>();
JSONObject json = jParser.makeHttpRequest(url_all_products, "GET",params);
Log.w("All book: ", json.toString());
Log.i(url_all_products, url_all_products);
try
{
System.err.println("json array "+json.getJSONArray(TAG_PRODUCTS));
bookProduct = json.getJSONArray(TAG_PRODUCTS);
}
catch (JSONException e)
{
e.printStackTrace();
}
if(data_exist!=bookProduct.length()){
Log.i("in update","m here");
Cursor cursors = getRawEvents("select id from bcuk_book");
try{
for (int i = 0; i < bookProduct.length(); i++) {
JSONObject c = bookProduct.getJSONObject(i);
String Bid = c.getString(TAG_ID);
ArrayList<String> mapId = new ArrayList<String>();
mapId.add(TAG_ID);
Log.e(Bid,Bid);
while(cursors.moveToNext())
{
System.err.println("update coded STEON"+cursors.getString(0));
Log.e(Bid,c.getString(TAG_ID));
}
}
}
catch(JSONException e){
e.printStackTrace();
}
}
else{
Log.i("Done good","m here");
}
return null;
}
背后的原因
if(data_exist!=bookProduct.length()){
此语句是变量data_exist=cursor.getCount();
并且bookProduct.length
是jsonarray的长度我要比较它们如果长度不一样那么我想将新值更新到sqlite.could任何人都建议我这样做的方法< / p>
答案 0 :(得分:1)
如果长度不一样,那么我想将新值更新为 sqlite。
不是更新数据库的好方法
假设服务器数据库字段中存在一些更改。相同但内容不同。
这就是我的方式:
String sql = "select * from " + DB_TABLE + " where " + TAG_ID + "='" + id + "'";
Cursor c = database.rawQuery(sql, null);
c.moveToFirst();
if( c.getCount() > 0){ // already in the database
// update entry with TAG_ID = id
}
else{ // new entry
// add new entry
}