| java.lang.Object | |
| ↳ | org.springframework.jdbc.support.rowset.ResultSetWrappingSqlRowSetMetaData |
Default implementation of Spring's SqlRowSetMetaData interface. Used by ResultSetWrappingSqlRowSet.
This implementation wraps a javax.sql.ResultSetMetaData
instance, catching any SQLExceptions and translating them to the
appropriate Spring DataAccessException.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Create a new ResultSetWrappingSqlRowSetMetaData object
for the given ResultSetMetaData instance.
| |||||||||||
| 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.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.jdbc.support.rowset.SqlRowSetMetaData
| |||||||||||
Create a new ResultSetWrappingSqlRowSetMetaData object for the given ResultSetMetaData instance.
| resultSetMetaData | a disconnected ResultSetMetaData instance
to wrap (usually a javax.sql.RowSetMetaData instance) |
|---|
getMetaData()getMetaData()Retrieves the catalog name of the table that served as the source for the specified column.
| column | the index of the column |
|---|
Retrieves the fully qualified class that the specified column will be mapped to.
| column | the index of the column |
|---|
Retrives the number of columns in the RowSet.
Retrieves the maximum width of the designated column.
| column | the index of the column |
|---|
Retrieve the suggested column title for the column specified.
| column | the index of the column |
|---|
Retrieve the column name for the indicated column.
| column | 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.
| column | the index of the column |
|---|
Retrieves the DBMS-specific type name for the indicated column.
| column | the index of the column |
|---|
Retrieves the precision for the indicated column.
| column | the index of the column |
|---|
Retrieves the scale of the indicated column.
| column | the index of the column |
|---|
Retrieves the schema name of the table that served as the source for the specified column.
| column | the index of the column |
|---|
Retrieves the name of the table that served as the source for the specified column.
| column | the index of the column |
|---|
Indicates whether the case of the designated column is significant.
| column | the index of the column |
|---|
Indicates whether the designated column contains a currency value.
| column | the index of the column |
|---|
Indicates whether the designated column contains a signed number.
| column | the index of the column |
|---|