DB2 から結果を取得してこの属性を設定しようとするとnoOfLocations
、次のエラーが発生します。
Method "setNoOfLocations" with signature "(Ljava/lang/Integer;)V" is not applicable on this object
次のコードは問題を示しています。
rs を使用して値を設定しています。
packDO.setNoOfLocations(rs.getInt("NO_LOC_PKG"));
と
rs.getInt("NO_LOC_PKG") is returning 0
と
NO_LOC_PKG is of datatype Integer in the DB
noOfLocations
セッターメソッドを使用し たタイプは、
private Integer noOfLocations;
public void setNoOfLocations(Integer noOfLocations) {
this.noOfLocations = noOfLocations;
}