serial class %ResultSet.MD.Column
extends %SerialObject
property ODBCType
as %Integer;
property clientType
as %Integer;
Returns the type of column n in the result set where type is an integer associated with
the client datatype. If the type cannot be determined, 0 (zero) is returned.
1 | | BINARY |
2 | | DATE |
3 | | DOUBLE |
4 | | HANDLE |
5 | | INTEGER |
6 | | LIST |
7 | | LONGVARCHAR |
8 | | TIME |
9 | | TIMESTAMP |
10 | | VARCHAR |
11 | | STATUS |
12 | | BINARYSTREAM |
13 | | CHARACTERSTREAM |
14 | | NUMERIC |
15 | | CURRENCY |
16 | | BOOLEAN |
17 | | OID |
18 | | BIGINT |
19 | | FDATE |
20 | | FTIMESTAMP |
property colName
as %String(MAXLEN=255);
property isAliased
as %Boolean;
property isAutoIncrement
as %Boolean;
property isCaseSensitive
as %Boolean;
property isCurrency
as %Boolean;
property isExpression
as %Boolean;
property isHidden
as %Boolean;
property isIdentity
as %Boolean;
property isKeyColumn
as %Boolean;
property isNullable
as %Boolean;
property isReadOnly
as %Boolean;
property isRowId
as %Boolean;
property isRowVersion
as %Boolean;
property isUnique
as %Boolean;
property label
as %String(MAXLEN=255);
property precision
as %Integer;
property propertyId
as %String(MAXLEN=255);
property qualifier
as %String;
property scale
as %Integer;
property schemaName
as %String;
property tableName
as %String;