org.springframework.jdbc.datasource
Interface ConnectionProxy
- All Superinterfaces: 
- Connection
- public interface ConnectionProxy- extends Connection
Subinterface of Connection to be implemented by connection proxies.
 Allows access to the target connection.
 
Can be checked for when needing to cast to a native Connection
 like OracleConnection. Spring's NativeJdbcExtractorAdapter automatically
 detects such proxies before delegating to the actual unwrapping for a
 specific connection pool.
- Since:
- 22.07.2004
- Author:
- Juergen Hoeller
- See Also:
- NativeJdbcExtractorAdapter.getNativeConnection(java.sql.Connection)
 
 
 
| Methods inherited from interface java.sql.Connection | 
| clearWarnings, close, commit, createStatement, createStatement, createStatement, getAutoCommit, getCatalog, getHoldability, getMetaData, getTransactionIsolation, getTypeMap, getWarnings, isClosed, isReadOnly, nativeSQL, prepareCall, prepareCall, prepareCall, prepareStatement, prepareStatement, prepareStatement, prepareStatement, prepareStatement, prepareStatement, releaseSavepoint, rollback, rollback, setAutoCommit, setCatalog, setHoldability, setReadOnly, setSavepoint, setSavepoint, setTransactionIsolation, setTypeMap | 
 
getTargetConnection
public Connection getTargetConnection()
- Return the target connection of this proxy.
 This will typically either be the native JDBC Connection
 or a wrapper from a connection pool.
 
 
- 
 
- 
 
Copyright (C) 2003-2004 The Spring Framework Project.