Uses of Interface
java.sql.ResultSetMetaData
| Package | Description | 
|---|---|
| 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 from
 the Java™ programming language. | 
| javax.sql.rowset | Standard interfaces and base classes for JDBC  RowSetimplementations. | 
- 
Uses of ResultSetMetaData in java.sqlMethods in java.sql that return ResultSetMetaData Modifier and Type Method Description ResultSetMetaDataPreparedStatement. getMetaData()Retrieves aResultSetMetaDataobject that contains information about the columns of theResultSetobject that will be returned when thisPreparedStatementobject is executed.ResultSetMetaDataResultSet. getMetaData()Retrieves the number, types and properties of thisResultSetobject's columns.
- 
Uses of ResultSetMetaData in javax.sqlSubinterfaces of ResultSetMetaData in javax.sql Modifier and Type Interface Description interfaceRowSetMetaDataAn object that contains information about the columns in aRowSetobject.
- 
Uses of ResultSetMetaData in javax.sql.rowsetClasses in javax.sql.rowset that implement ResultSetMetaData Modifier and Type Class Description classRowSetMetaDataImplProvides implementations for the methods that set and get metadata information about aRowSetobject's columns.