return new SQLBoolean(this, name);
}
// MySQL supports UNSIGNED varieties of the integer types
if (name.contains("UNSIGNED")) {
return new SQLExactNumeric(this, name, jdbcType, true);
}
// The MySQL driver chokes on some values that are supported by the
// MySQL database but not by the corresponding Java objects.
if (jdbcType == Types.DATE) {