1

我想将记录从数据库发送到服务器,然后将其删除。这是我在服务中发送和删除的代码。

      DBAdapter db=new DBAdapter(this);
        db.open();
        Cursor cursor=db.getAllData();
        if(cursor.moveToFirst())
        {
            do{
                jObject = new JSONObject();
                jObject.put("Imei", cursor.getString(1));
                jObject.put("Lat", cursor.getString(2));
                jObject.put("Long", cursor.getString(3));
                jObject.put("Gpsdatetime", cursor.getString(4));
                jObject.put("Speed", cursor.getString(5));
                jObject.put("Altitude",cursor.getString(6));
                jObject.put("Battery", cursor.getString(7));
                //jArray.put(jObject);

                String datatoServer = jObject.toString()+"\n";
                      Toast.makeText(getApplicationContext(),datatoServer, Toast.LENGTH_LONG).show();

                HttpEntity entity;
                HttpClient client = new DefaultHttpClient();
                String url = "http://url";
                HttpPost request = new HttpPost(url);
                StringEntity se = new StringEntity(datatoServer);
                se.setContentEncoding("UTF-8");
                se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,
                    "application/json"));
                entity = se;
                request.setEntity(entity);
                HttpResponse response = client.execute(request);
                entity = response.getEntity();
                db.deleteContacts(1);
            }while(cursor.moveToNext());
        }//if
        db.close();             

我对删除功能感到困惑。数据已正确发送到服务器,但仅删除第一行。

这是我的 DBHelper 类中的删除函数。它以 rowid 作为参数。

public boolean deleteContacts(long rowId)
{
    return db.delete(DATABASE_TABLE, KEY_ROWID+"="+rowId, null)>0;
}
4

4 回答 4

0
 db.deleteContacts(1);

问题是在这里您将 1 作为参数发送给您的方法。所以它总是寻找具有 1 的那个rowId

用于cursor.getLong(columnIndex) 获取长值

于 2013-04-01T05:38:20.570 回答
0

尝试这个,

 context.deleteDatabase(DATABASE_NAME);
于 2013-04-01T05:50:11.787 回答
0

如果db.deleteContacts(1);删除第一行,那么您可以在do...while()循环中放置一个 int 变量,并在每次迭代时为其提供 1 的增量。然后执行db.deleteContacts(your_var).

于 2013-04-01T05:32:43.123 回答
0

假设您的db.getAllData()方法选择所有列(包括列id`,更改...

db.deleteContacts(1);

至...

db.deleteContacts(cursor.getLong(cursor.getColumnIndex(KEY_ROWID)));

永远不要假设任何给定的列数据位于任何固定列索引 - 使用列名查找索引。

于 2013-04-01T05:46:25.083 回答