-
arrayBaseColumnType
Integer arrayBaseColumnType
Homogenous array base SQL type from java.sql.Types.
-
isAutoIncrement
Boolean isAutoIncrement
Whether the designated column is automatically numbered
-
isCaseSensitive
Boolean isCaseSensitive
Whether values in the designated column's case matters
-
isCurrency
Boolean isCurrency
Whether values in the designated column is a cash value
-
isSigned
Boolean isSigned
Whether values in the designated column are signed numbers
-
label
String label
Usually specified by the SQL AS. If not specified, return column name.
-
name
String name
Name of the column.
-
nullable
Integer nullable
Indicates the nullability of values in the designated column. One of columnNoNulls (0), columnNullable (1),
columnNullableUnknown (2)
-
precision
Integer precision
Get the designated column's specified column size.For numeric data, this is the maximum precision. For character
data, this is the length in characters. For datetime datatypes, this is the length in characters of the String
representation (assuming the maximum allowed precision of the fractional seconds component). For binary data, this
is the length in bytes. For the ROWID datatype, this is the length in bytes. 0 is returned for data types where
the column size is not applicable.
-
scale
Integer scale
Designated column's number of digits to right of the decimal point. 0 is returned for data types where the scale
is not applicable.
-
schemaName
String schemaName
Designated column's table's schema
-
tableName
String tableName
Designated column's table name
-
type
Integer type
SQL type from java.sql.Types.
-
typeName
String typeName
Database-specific type name.