Supported Types
You are looking at an older version of the documentation. The latest version is found here.
Data Virtuality Server Runtime Types
Type | Description | Java Runtime Class | JDBC Type | ODBC Type |
---|---|---|---|---|
| Variable length character string with a maximum length of 4000 |
|
|
|
| Variable length binary string with a maximum length of 8192 |
|
|
|
| A single Unicode character |
|
|
|
| A single bit, or boolean, that can be |
|
|
|
| Numeric, integral type, signed 8-bit |
|
|
|
| Numeric, integral type, signed 16-bit |
|
|
|
| Numeric, integral type, signed 32-bit. The serial type also implies not null and has an auto-incrementing value that starts at 1. serial types are not automatically UNIQUE |
|
|
|
| Numeric, integral type, signed 64-bit |
|
|
|
| Numeric, integral type, arbitrary precision of up to 1000 digits |
|
|
|
| Numeric, floating point type, 32-bit IEEE 754 floating-point numbers |
|
|
|
| Numeric, floating point type, 64-bit IEEE 754 floating-point numbers |
|
|
|
| Numeric, floating point type, arbitrary precision of up to 1000 digits. Note that the precision and scale cannot be explicitly set with the type literal, e.g. decimal(38, 2) |
|
|
|
| Datetime, representing a single day (year, month, day) |
|
|
|
| Datetime, representing a single time (hours, minutes, seconds, milliseconds) |
|
|
|
| Datetime, representing a single date and time (year, month, day, hours, minutes, seconds, milliseconds, nanoseconds) |
|
|
|
| Any arbitrary Java object, must implement java.lang.Serializable |
|
|
|
| Binary large object, representing a stream of bytes |
|
|
|
| Character large object, representing a stream of characters |
|
|
|
| XML document |
|
|
|