Method Summary |
|
public int | getPrecision(int column) Get the designated column's number of decimal digits. |
public int | getScale(int column) Gets the designated column's number of digits to right of the decimal point. |
public String | getSchemaName(int column) Get the designated column's table's schema. |
public boolean | isAutoIncrement(int column) Indicates whether the respective column supports auto increment. |
public boolean | isCaseSensitive(int column) Indicates whether the respective columnis case sensitive. |
public boolean | isCurrency(int column) Indicates whether the designated column is a cash value. |
public boolean | isDefinitelyWritable(int column) Indicates whether a write on the designated column will definitely succeed. |
public int | isNullable(int column) Indicates the nullability of values in the designated column. |
public boolean | isReadOnly(int column) Indicates whether the designated column is definitely not writable. |
public boolean | isSearchable(int column) Indicates whether the designated column can be used in a where clause. |
public boolean | isSigned(int column) Indicates whether values in the designated column are signed numbers. |
public boolean | isWritable(int column) Indicates whether it is possible for a write on the designated column to succeed. |