if (o == null || resultSet.wasNull()) {
throw new UsageException(
"getDecimalData(String) could not handle column " + pColumnName + ". Result =" + o,
SP_ER_PARAMETERERROR, SP_ER_USER, UsageException.qq_Resolver.cMESSAGE_REASONCODE_SEVERITY);
}
DecimalData dd = new DecimalData(resultSet.getDouble(pColumnName));
return dd;
} catch (SQLException e) {
throw processException(e);
}
}