Method Summary |
|
public String | getCatalogName(int column) QED doesn't support catalogs. |
public String | getColumnClassName(int column) |
public int | getColumnCount() Return the number of columns in the ResultSet . |
public int | getColumnDisplaySize(int column) |
public String | getColumnLabel(int column) Return the shortest possible name for this column, such that the
name is unique within this ResultSet object. |
public String | getColumnName(int column) Return the shortest possible name for this column, such that the
name is unique within this ResultSet object. |
public int | getColumnType(int column) |
public String | getColumnTypeName(int column) |
public int | getPrecision(int column) Return the maximum precision of this column, or -1 if this column
is not a numeric type. |
public int | getScale(int column) |
public String | getSchemaName(int column) Return the schema name for the table from which this column
is derived. |
public String | getTableName(int column) Return name of the table from which this column is derived. |
public boolean | isAutoIncrement(int column) Return true if this is an auto-increment type. |
public boolean | isCaseSensitive(int column) Return true if this column is case-sensitive. |
public boolean | isCurrency(int column) Return true if this column is a cash value. |
public boolean | isDefinitelyWritable(int column) |
public int | isNullable(int column) |
public boolean | isReadOnly(int column) |
public boolean | isSearchable(int column) Return true if the column can be used in a WHERE
clause. |
public boolean | isSigned(int column) Return true if this column contains a signed number. |
public boolean | isWritable(int column) Return true if this column is writable. |