| java.lang.Object org.h2.message.TraceObject org.h2.jdbc.JdbcResultSetMetaData
getCatalogName | public String getCatalogName(int column) throws SQLException(Code) | | Returns the catalog name.
Parameters: column - the column index (1,2,...) the catalog name throws: SQLException - if the result set is closed or invalid |
getColumnClassName | public String getColumnClassName(int column) throws SQLException(Code) | | Gets the Java class name of the object that will be returned
if ResultSet.getObject is called.
Parameters: column - the column index (1,2,...) the Java class name throws: SQLException - if the result set is closed or invalid |
getColumnCount | public int getColumnCount() throws SQLException(Code) | | Returns the number of columns.
the number of columns throws: SQLException - if the result set is closed or invalid |
getColumnDisplaySize | public int getColumnDisplaySize(int column) throws SQLException(Code) | | Gets the maximum display size for this column.
Parameters: column - the column index (1,2,...) the display size throws: SQLException - if the result set is closed or invalid |
getColumnLabel | public String getColumnLabel(int column) throws SQLException(Code) | | Returns the column label.
Parameters: column - the column index (1,2,...) the column label throws: SQLException - if the result set is closed or invalid |
getColumnName | public String getColumnName(int column) throws SQLException(Code) | | Returns the column name.
Parameters: column - the column index (1,2,...) the column name throws: SQLException - if the result set is closed or invalid |
getColumnType | public int getColumnType(int column) throws SQLException(Code) | | Returns the data type of a column.
Parameters: column - the column index (1,2,...) the data type throws: SQLException - if the result set is closed or invalid |
getColumnTypeName | public String getColumnTypeName(int column) throws SQLException(Code) | | Returns the data type name of a column.
Parameters: column - the column index (1,2,...) the data type throws: SQLException - if the result set is closed or invalid |
getPrecision | public int getPrecision(int column) throws SQLException(Code) | | Gets the precision for this column.
This method always returns 0.
Parameters: column - the column index (1,2,...) the precision throws: SQLException - if the result set is closed or invalid |
getScale | public int getScale(int column) throws SQLException(Code) | | Gets the scale for this column.
This method always returns 0.
Parameters: column - the column index (1,2,...) the scale throws: SQLException - if the result set is closed or invalid |
getSchemaName | public String getSchemaName(int column) throws SQLException(Code) | | Returns the schema name.
Parameters: column - the column index (1,2,...) the schema name throws: SQLException - if the result set is closed or invalid |
getTableName | public String getTableName(int column) throws SQLException(Code) | | Returns the table name.
Parameters: column - the column index (1,2,...) the table name throws: SQLException - if the result set is closed or invalid |
isAutoIncrement | public boolean isAutoIncrement(int column) throws SQLException(Code) | | Checks if this an autoincrement column.
It always returns false.
Parameters: column - the column index (1,2,...) false throws: SQLException - if the result set is closed or invalid |
isCaseSensitive | public boolean isCaseSensitive(int column) throws SQLException(Code) | | Checks if this column is case sensitive.
It always returns true.
Parameters: column - the column index (1,2,...) true throws: SQLException - if the result set is closed or invalid |
isCurrency | public boolean isCurrency(int column) throws SQLException(Code) | | Checks if this is a currency column.
It always returns false.
Parameters: column - the column index (1,2,...) false throws: SQLException - if the result set is closed or invalid |
isDefinitelyWritable | public boolean isDefinitelyWritable(int column) throws SQLException(Code) | | Checks whether a write on this column will definitely succeed.
It always returns false.
Parameters: column - the column index (1,2,...) false throws: SQLException - if the result set is closed or invalid |
isNullable | public int isNullable(int column) throws SQLException(Code) | | Checks if this is nullable column. Returns
ResultSetMetaData.columnNullableUnknown if this is not a column of a
table. Otherwise, it returns ResultSetMetaData.columnNoNulls if the
column is not nullable, and ResultSetMetaData.columnNullable if it is
nullable.
Parameters: column - the column index (1,2,...) ResultSetMetaData.column* throws: SQLException - if the result set is closed or invalid |
isReadOnly | public boolean isReadOnly(int column) throws SQLException(Code) | | Checks if this column is read only.
It always returns false.
Parameters: column - the column index (1,2,...) false throws: SQLException - if the result set is closed or invalid |
isSearchable | public boolean isSearchable(int column) throws SQLException(Code) | | Checks if this column is searchable.
It always returns true.
Parameters: column - the column index (1,2,...) true throws: SQLException - if the result set is closed or invalid |
isSigned | public boolean isSigned(int column) throws SQLException(Code) | | Checks if this column is signed.
It always returns true.
Parameters: column - the column index (1,2,...) true throws: SQLException - if the result set is closed or invalid |
isWritable | public boolean isWritable(int column) throws SQLException(Code) | | Checks whether it is possible for a write on this column to succeed.
It always returns true.
Parameters: column - the column index (1,2,...) true throws: SQLException - if the result set is closed or invalid |
Fields inherited from org.h2.message.TraceObject | final public static int CALLABLE_STATEMENTCONNECTIONDATABASE_META_DATAPREPARED_STATEMENTRESULT_SETRESULT_SET_META_DATASAVEPOINTSQL_EXCEPTIONSTATEMENTBLOBCLOBPARAMETER_META_DATA(Code)(Java Doc) final public static int DATA_SOURCEXA_DATA_SOURCEXIDARRAY(Code)(Java Doc)
|
|
|