Ejemplo n.º 1
0
 /*将country数据存储到数据库*/
 public void savecountry(Country country) {
   if (country != null) {
     ContentValues val = new ContentValues();
     val.put("country_name", country.getCountryname());
     val.put("country_code", country.getCountrycode());
     val.put("city_id", country.getCityid());
     db.insert("Country", null, val);
   }
 }