Android SQlite更新查询

时间:2012-02-21 06:36:08

标签: android sqlite

我有一个更新查询,我需要传递多个参数。请指导怎么做。这里代替“id”我想要多个参数,例如名称年龄。

//代码

   ContentValues updateCountry = new ContentValues();
   updateCountry.put("country_name", "United States");
   db.update("tbl_countries", updateCountry, "id=?", new String[] {Long.toString(countryId)})

1 个答案:

答案 0 :(得分:16)

尝试

   ContentValues updateCountry = new ContentValues();
   updateCountry.put("country_name", "United States");
   db.update("tbl_countries", updateCountry, "id=? AND name=? AND age=?", new String[]{Long.toString(countryId),"name_value","age_value"});