| org.springframework.jdbc.support.rowset.SqlRowSetMetaData |
Known Indirect Subclasses
|
Meta data interface for Spring's SqlRowSet,
analogous to javax.sql.ResultSetMetaData
The main difference to the standard JDBC RowSetMetaData is that an SQLException
is never thrown here. This allows a SqlRowSetMetaData to be used without having
to deal with checked exceptions. A SqlRowSetMetaData will throw Spring's
org.springframework.jdbc.InvalidResultSetAccessException
instead (when appropriate).
getMetaData()InvalidResultSetAccessException| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Retrieves the catalog name of the table that served as the source for the specified column.
| |||||||||||
Retrieves the fully qualified class that the specified column will be mapped to.
| |||||||||||
Retrives the number of columns in the RowSet.
| |||||||||||
Retrieves the maximum width of the designated column.
| |||||||||||
Retrieve the suggested column title for the column specified.
| |||||||||||
Retrieve the column name for the indicated column.
| |||||||||||
Return the column names of the table that the result set represents.
| |||||||||||
Retrieve the SQL type code for the indicated column.
| |||||||||||
Retrieves the DBMS-specific type name for the indicated column.
| |||||||||||
Retrieves the precision for the indicated column.
| |||||||||||
Retrieves the scale of the indicated column.
| |||||||||||
Retrieves the schema name of the table that served as the source for the specified column.
| |||||||||||
Retrieves the name of the table that served as the source for the specified column.
| |||||||||||
Indicates whether the case of the designated column is significant.
| |||||||||||
Indicates whether the designated column contains a currency value.
| |||||||||||
Indicates whether the designated column contains a signed number.
| |||||||||||
Retrieves the catalog name of the table that served as the source for the specified column.
| columnIndex | the index of the column |
|---|
Retrieves the fully qualified class that the specified column will be mapped to.
| columnIndex | the index of the column |
|---|
Retrives the number of columns in the RowSet.
Retrieves the maximum width of the designated column.
| columnIndex | the index of the column |
|---|
Retrieve the suggested column title for the column specified.
| columnIndex | the index of the column |
|---|
Retrieve the column name for the indicated column.
| columnIndex | the index of the column |
|---|
Return the column names of the table that the result set represents.
Retrieve the SQL type code for the indicated column.
| columnIndex | the index of the column |
|---|
getColumnType(int)Retrieves the DBMS-specific type name for the indicated column.
| columnIndex | the index of the column |
|---|
Retrieves the precision for the indicated column.
| columnIndex | the index of the column |
|---|
Retrieves the scale of the indicated column.
| columnIndex | the index of the column |
|---|
Retrieves the schema name of the table that served as the source for the specified column.
| columnIndex | the index of the column |
|---|
Retrieves the name of the table that served as the source for the specified column.
| columnIndex | the index of the column |
|---|
Indicates whether the case of the designated column is significant.
| columnIndex | the index of the column |
|---|
Indicates whether the designated column contains a currency value.
| columnIndex | the index of the column |
|---|
Indicates whether the designated column contains a signed number.
| columnIndex | the index of the column |
|---|