| Java™ Platform Standard Ed. 6 | ||||||||||
| java.sql | Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java programming language. |
| javax.sql | Provides the API for server side data source access and processing fromthe Java programming language. |
| javax.sql.rowset | Standard interfaces and base classes for JDBCRowSetimplementations. |
| Methods injava.sql that returnResultSetMetaData | |
|---|---|
ResultSet.getMetaData()Retrieves the number, types and properties of this ResultSet object's columns. | |
PreparedStatement.getMetaData()Retrieves a ResultSetMetaData object that contains information about the columns of theResultSet object that will be returned when thisPreparedStatement object is executed. | |
| Subinterfaces ofResultSetMetaData injavax.sql | |
|---|---|
RowSetMetaDataAn object that contains information about the columns in a RowSet object. | |
| Classes injavax.sql.rowset that implementResultSetMetaData | |
|---|---|
RowSetMetaDataImplProvides implementations for the methods that set and get metadata information about a RowSet object's columns. | |
| Java™ Platform Standard Ed. 6 | ||||||||||