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