I'm doing update method in my DB helper class. But I can't resolve where i've done a mistake. There is no errors in log, but my field in table doesn't update.
public void updateJSON(long id, String newString) {
ContentValues dataToInsert = new ContentValues();
dataToInsert.put("cityJSON", newString);
String where = "id=?";
String[] whereArgs = new String[]{String.valueOf(id)};
this.db.update(TABLE_NAME, dataToInsert, where, whereArgs);
}
I'm transferring json string (with commas, brackets etc) and ID of the field.

id? Normally on Android it's_id. – Graham Borland Dec 7 '12 at 12:13