Java.Sql.IResultSetMetaData Members

The members of Java.Sql.IResultSetMetaData are listed below.

Public Properties

[read-only]
ColumnCountint. Returns number of columns contained in the associated result set.

Public Methods

GetCatalogName(int) : string
Returns the title of an indexed column's catalog.
GetColumnClassName(int) : string
Returns the fully-qualified type of the class that is produced when invoking ResultSet.getObject to recover this column's value.
GetColumnDisplaySize(int) : int
Returns the indexed column's standard maximum width, expressed in number of characters.
GetColumnLabel(int) : string
Returns a recommended title for the indexed column, to be used when the title needs to be displayed.
GetColumnName(int) : string
Returns the title of the indexed column.
GetColumnType(int) : int
Returns the type of the indexed column as SQL type code.
GetColumnTypeName(int) : string
Returns the type name of the indexed column.
GetPrecision(int) : int
Returns the decimal precision of the indexed column.
GetScale(int) : int
Returns the number of digits to the right of the decimal point of the indexed column.
GetSchemaName(int) : string
Returns the name of the indexed columns schema.
GetTableName(int) : string
Returns the title of the indexed columns table.
IsAutoIncrement(int) : bool
Returns an indication of whether the indexed column is automatically incremented and is therefore read-only.
IsCaseSensitive(int) : bool
Returns an indication of whether the case of the indexed column is important.
IsCurrency(int) : bool
Returns whether the indexed column contains a monetary amount.
IsDefinitelyWritable(int) : bool
Returns an indication of whether writing to the indexed column is guaranteed to be successful.
IsNullable(int) : int
Returns whether the indexed column is nullable.
IsReadOnly(int) : bool
Returns an indication of whether writing to the indexed column is guaranteed to be unsuccessful.
IsSearchable(int) : bool
Returns an indication of whether the indexed column is searchable.
IsSigned(int) : bool
Returns an indication of whether the values contained in the indexed column are signed.
IsWritable(int) : bool
Returns an indication of whether writing to the indexed column is possible.