return new SQLCharacterString(this, name, true);
}
// Oracle-specific floating point types
if ("BINARY_FLOAT".equals(name) || "BINARY_DOUBLE".equals(name)) {
return new SQLApproximateNumeric(this, name);
}
// Oracle binary file pointer
// TODO: We could at least support reading from BFILE, although querying for them seems hard
if ("BFILE".equals(name)) {