All Known Implementing Classes:
FilteredRowSet, DataSource, JdbcRowSet, CachedRowSet, CallableStatement, DatabaseMetaData, SyncResolver, RowSetMetaDataImpl, JoinRowSet, ResultSetMetaData, PreparedStatement, ParameterMetaData, ResultSet, RowSetMetaData, RowSet, Statement, Connection, WebRowSet
The wrapper pattern is employed by many JDBC driver implementations to provide extensions beyond the traditional JDBC API that are specific to a data source. Developers may wish to gain access to these resources that are wrapped (the delegates) as proxy class instances representing the the actual resources. This interface describes a standard mechanism to access these wrapped resources represented by their proxy, to permit direct access to the resource delegates.
1.6
- Method from java.sql.Wrapper Summary: |
---|
isWrapperFor, unwrap |
Method from java.sql.Wrapper Detail: |
---|
isWrapperFor on the wrapped
object. If this does not implement the interface and is not a wrapper, return false.
This method should be implemented as a low-cost operation compared to unwrap so that
callers can use this method to avoid expensive unwrap calls that may fail. If this method
returns true then calling unwrap with the same argument should succeed. |
unwrap recursively on the wrapped object
or a proxy for that result. If the receiver is not a
wrapper and does not implement the interface, then an SQLException is thrown. |