public class JBossNativeJdbcExtractor extends NativeJdbcExtractorAdapter
NativeJdbcExtractor
interface for JBoss,
supporting JBoss Application Server 3.2.4+. As of Spring 3.1.1, it also
supports JBoss 7.
Returns the underlying native Connection, Statement, etc to
application code instead of JBoss' wrapper implementations.
The returned JDBC classes can then safely be cast, e.g. to
oracle.jdbc.OracleConnection
.
This NativeJdbcExtractor can be set just to allow working with a JBoss connection pool: If a given object is not a JBoss wrapper, it will be returned as-is.
WrappedConnection
,
WrappedStatement
,
WrappedResultSet
Constructor and Description |
---|
JBossNativeJdbcExtractor()
This constructor retrieves JBoss JDBC wrapper classes,
so we can get the underlying vendor connection using reflection.
|
Modifier and Type | Method and Description |
---|---|
protected Connection |
doGetNativeConnection(Connection con)
Retrieve the Connection via JBoss'
getUnderlyingConnection method. |
CallableStatement |
getNativeCallableStatement(CallableStatement cs)
Retrieve the Connection via JBoss'
getUnderlyingStatement method. |
PreparedStatement |
getNativePreparedStatement(PreparedStatement ps)
Retrieve the Connection via JBoss'
getUnderlyingStatement method. |
ResultSet |
getNativeResultSet(ResultSet rs)
Retrieve the Connection via JBoss'
getUnderlyingResultSet method. |
Statement |
getNativeStatement(Statement stmt)
Retrieve the Connection via JBoss'
getUnderlyingStatement method. |
getNativeConnection, getNativeConnectionFromStatement, isNativeConnectionNecessaryForNativeCallableStatements, isNativeConnectionNecessaryForNativePreparedStatements, isNativeConnectionNecessaryForNativeStatements
public JBossNativeJdbcExtractor()
protected Connection doGetNativeConnection(Connection con) throws SQLException
getUnderlyingConnection
method.doGetNativeConnection
in class NativeJdbcExtractorAdapter
SQLException
public Statement getNativeStatement(Statement stmt) throws SQLException
getUnderlyingStatement
method.getNativeStatement
in interface NativeJdbcExtractor
getNativeStatement
in class NativeJdbcExtractorAdapter
stmt
- the Statement handle, potentially wrapped by a connection poolSQLException
- if thrown by JDBC methodspublic PreparedStatement getNativePreparedStatement(PreparedStatement ps) throws SQLException
getUnderlyingStatement
method.getNativePreparedStatement
in interface NativeJdbcExtractor
getNativePreparedStatement
in class NativeJdbcExtractorAdapter
ps
- the PreparedStatement handle, potentially wrapped by a connection poolSQLException
- if thrown by JDBC methodspublic CallableStatement getNativeCallableStatement(CallableStatement cs) throws SQLException
getUnderlyingStatement
method.getNativeCallableStatement
in interface NativeJdbcExtractor
getNativeCallableStatement
in class NativeJdbcExtractorAdapter
cs
- the CallableStatement handle, potentially wrapped by a connection poolSQLException
- if thrown by JDBC methodspublic ResultSet getNativeResultSet(ResultSet rs) throws SQLException
getUnderlyingResultSet
method.getNativeResultSet
in interface NativeJdbcExtractor
getNativeResultSet
in class NativeJdbcExtractorAdapter
rs
- the ResultSet handle, potentially wrapped by a connection poolSQLException
- if thrown by JDBC methods