Supported ABL data types and corresponding OpenEdge SQL data types
- Last Updated: March 14, 2016
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
OpenEdge SQL supports many data types that do not correspond to ABL data types. The following table lists the ABL data types that do correspond to OpenEdge SQL data types.
| ABL data type | OpenEdge SQL data type |
|---|---|
ARRAY
|
VARARRAY
|
BLOB
|
BLOB
|
CHARACTER
|
VARCHAR
|
CLOB
|
CLOB
|
DATE
|
DATE
|
DATETIME
|
TIMESTAMP
|
DATETIME-TZ
|
TIMESTAMP WITH TIME ZONE
|
DECIMAL
|
DECIMAL or NUMERIC |
INTEGER
|
INTEGER
|
INT64
|
BIGINT
|
LOGICAL
|
BIT
|
RAW
|
VARBINARY
|
RECID
|
RECID
|
Notes
- All
other SQL types are not compatible with ABL. In particular, OpenEdge
SQL
CHARACTERdata is not compatible with the ABL. Use OpenEdge SQL typeVARCHARto map ABLCHARACTERdata. - Data columns created using OpenEdge SQL that have a data type not supported by ABL are not accessible through ABL applications and utilities.
- For more information about OpenEdge SQL data types, see OpenEdge SQL language elements.