* @param pColumnID the ordinal number of the column to read
* @return a DecimalNullable instance containing the value of the column in the database
*/
public DecimalNullable getDecimalNullable(int pColumnID) {
try {
DecimalNullable dn = new DecimalNullable();
double doub = resultSet.getDouble(pColumnID);
if (resultSet.wasNull()) {
dn.setNull();
} else {
dn.setValue(doub);
}
return dn;
} catch (SQLException e) {
throw processException(e);