当我从 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
使用 setter 方法键入的是,
private Integer noOfLocations;
public void setNoOfLocations(Integer noOfLocations) {
this.noOfLocations = noOfLocations;
}