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