Methods Summary |
---|
public java.lang.String | getCatalogName(int column)Returns the title of an indexed column's catalog.
|
public java.lang.String | getColumnClassName(int column)Returns the fully-qualified type of the class that is produced when
invoking {@code ResultSet.getObject} to recover this column's value.
|
public int | getColumnCount()Returns number of columns contained in the associated result set.
|
public int | getColumnDisplaySize(int column)Returns the indexed column's standard maximum width, expressed in number
of characters.
|
public java.lang.String | getColumnLabel(int column)Returns a recommended title for the indexed column, to be used when the
title needs to be displayed.
|
public java.lang.String | getColumnName(int column)Returns the title of the indexed column.
|
public int | getColumnType(int column)Returns the type of the indexed column as SQL type code.
|
public java.lang.String | getColumnTypeName(int column)Returns the type name of the indexed column.
|
public int | getPrecision(int column)Returns the decimal precision of the indexed column.
|
public int | getScale(int column)Returns the number of digits to the right of the decimal point of the
indexed column.
|
public java.lang.String | getSchemaName(int column)Returns the name of the indexed columns schema.
|
public java.lang.String | getTableName(int column)Returns the title of the indexed columns table.
|
public boolean | isAutoIncrement(int column)Returns an indication of whether the indexed column is automatically
incremented and is therefore read-only.
|
public boolean | isCaseSensitive(int column)Returns an indication of whether the case of the indexed column is
important.
|
public boolean | isCurrency(int column)Returns whether the indexed column contains a monetary amount.
|
public boolean | isDefinitelyWritable(int column)Returns an indication of whether writing to the indexed column is
guaranteed to be successful.
|
public int | isNullable(int column)Returns whether the indexed column is nullable.
|
public boolean | isReadOnly(int column)Returns an indication of whether writing to the indexed column is
guaranteed to be unsuccessful.
|
public boolean | isSearchable(int column)Returns an indication of whether the indexed column is searchable.
|
public boolean | isSigned(int column)Returns an indication of whether the values contained in the indexed
column are signed.
|
public boolean | isWritable(int column)Returns an indication of whether writing to the indexed column is
possible.
|