DB ヘルパー クラスで 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);
}
json文字列(コンマ、括弧などを含む)とフィールドのIDを転送しています。