Represents the SQL types for a column.
public enum ul_column_sql_type
Member name | Description |
---|---|
UL_SQLTYPE_BAD_INDEX |
The column at the specified index does not exist. |
UL_SQLTYPE_S_LONG |
The column contains a signed long. |
UL_SQLTYPE_U_LONG |
The column contains an unsigned long. |
UL_SQLTYPE_S_SHORT |
The column contains a signed short. |
UL_SQLTYPE_U_SHORT |
The column contains an unsigned short. |
UL_SQLTYPE_S_BIG |
The column contains a signed 64-bit integer. |
UL_SQLTYPE_U_BIG |
The column contains an unsigned 64-bit integer. |
UL_SQLTYPE_TINY |
The column contains an unsigned 8-bit integer. |
UL_SQLTYPE_BIT |
The column contains a 1-bit flag. |
UL_SQLTYPE_TIMESTAMP |
The column contains timestamp information. |
UL_SQLTYPE_DATE |
The column contains date information. |
UL_SQLTYPE_TIME |
The column contains time information. |
UL_SQLTYPE_DOUBLE |
The column contains a double precision floating-point number. (8 bytes). |
UL_SQLTYPE_REAL |
The column contains a single precision floating-point number. (4 bytes). |
UL_SQLTYPE_NUMERIC |
The column contains exact numerical data, with specified precision and scale. |
UL_SQLTYPE_BINARY |
The column contains binary data with a specified maximum length. |
UL_SQLTYPE_CHAR |
The column contains character data with a specified length. |
UL_SQLTYPE_LONGVARCHAR |
The column contains character data with variable length. |
UL_SQLTYPE_LONGBINARY |
The column contains binary data with variable length. |
UL_SQLTYPE_UUID |
The column contains a UUID. |
UL_SQLTYPE_ST_GEOMETRY |
The column contains spatial data in the form of points. |
UL_SQLTYPE_TIMESTAMP_WITH_TIME_ZONE |
The column contains timestamp and time zone information. |
These values correspond to SQL column types.
Discuss this page in DocCommentXchange.
|
Copyright © 2010, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.0 |