DataType
Property keys mapped to the columns of the OpenEdge SQL `SYSDATATYPES` system catalog table.
SYSDATATYPES lists every SQL data type that the OpenEdge SQL engine
supports for column definitions.
Tags
Table of Contents
Constants
- COLUMN_LENGTH : string = 'columnLength'
- Maximum storage length of the data type, in bytes (`col_len`).
- DATA_TYPE_PRECISION : string = 'dataTypePrecision'
- Default numeric precision of the data type (`precision`).
- DATA_TYPE_RADIX : string = 'dataTypeRadix'
- Numeric radix used by `dataTypePrecision` (`radix`).
- TYPE_CODE : string = 'typeCode'
- Numeric SQL type code identifying the data type (`typecode`).
- TYPE_NAME : string = 'typeName'
- Canonical SQL name of the data type (`typename`).
Constants
COLUMN_LENGTH
Maximum storage length of the data type, in bytes (`col_len`).
public
string
COLUMN_LENGTH
= 'columnLength'
DATA_TYPE_PRECISION
Default numeric precision of the data type (`precision`).
public
string
DATA_TYPE_PRECISION
= 'dataTypePrecision'
DATA_TYPE_RADIX
Numeric radix used by `dataTypePrecision` (`radix`).
public
string
DATA_TYPE_RADIX
= 'dataTypeRadix'
TYPE_CODE
Numeric SQL type code identifying the data type (`typecode`).
public
string
TYPE_CODE
= 'typeCode'
TYPE_NAME
Canonical SQL name of the data type (`typename`).
public
string
TYPE_NAME
= 'typeName'