throw processException(e);
}
}
public ImageNullable getImageNullable(String pColumnName) {
ImageNullable in = new ImageNullable();
try {
byte[] imageArray = resultSet.getBytes(pColumnName);
if (imageArray == null)
return in;
if (resultSet.wasNull()) {
in.setNull(true);
} else {
in.setValue(imageArray);
in.setNull(false);
}
return in;
} catch (SQLException e) {
throw processException(e);