私のテーブル定義には、intデータ型の列があります。値が「0」の場合、jdbcTemplate updateメソッドで、このフィールドをデフォルトで「0」ではなく「NULL」で更新する必要があります。
this.jdbcTemplate.update("UPDATE GCUR_OBSERVATION "
+ "SET ObserverId = ?," + "ObservationDate = ?,"
+ "PointCuring = ?"
+ " WHERE locationId = ? AND ObservationStatus = 0",
new Object[] { new Integer(newObservation.getObserverId()),
newObservation.getObservationDate(),
new Integer(newObservation.getLocationId()) });
上記のコードスニペットは、がの場合に適切に実行されPoint Curing
ますnot NULL
。NULL
しかし、データベーステーブルのようにどのように保存できますか?