Data type handling properties
- Last Updated: August 22, 2024
- 1 minute read
- DataDirect Connectors
- JDBC
- Oracle Database 6.0
- Documentation
The following table summarizes connection properties which can be used to handle data types.
| Property | Characteristic |
|---|---|
| Controls how data conversions are handled for
null values. By default, the driver checks the data type this is requested against the data type of the table column that stores the data. If a conversion between the requested type and column type is not defined, the driver generates an "unsupported data conversion" exception regardless of the data type of the column value. |
|
| Determines whether column values with the
datetimeoffset data type are returned as a JDBC VARCHAR or TIMESTAMP
data type. If set to If set to The default is |
|
| Determines which algorithm the driver uses
when converting a double or float value to a string value. If set to If set to By default, the driver uses its own internal conversion algorithm, which improves performance. |
|
| Determines how the driver describes database
data types that map to the following JDBC 4.0 data types: NCHAR,
NVARCHAR, NLONGVARCHAR, NCLOB, and SQLXML. If
set to If
set to By default, the driver describes the data types using JDBC 3.0-equivalent data types. This allows your application to continue using JDBC 3.0 types. Additionally, the PROCEDURE_NAME column contains procedure name qualifiers. For example, for the fully qualified procedure named 1.sp_productadd, the driver would return sp_productadd;1. |
|
| Enables the driver to support XMLType with binary storage on servers running Oracle 12c and higher. |