Package org.jboss.jca.adapters.jdbc
Interface StatementAccess
-
- All Known Implementing Classes:
WrappedCallableStatement,WrappedCallableStatementJDK7,WrappedCallableStatementJDK8,WrappedPreparedStatement,WrappedPreparedStatementJDK7,WrappedPreparedStatementJDK8,WrappedStatement,WrappedStatementJDK7,WrappedStatementJDK8
public interface StatementAccessA simple interface that allow us to get the underlying driver specific statement implementation back from the wrapper.- Version:
- $Revision: 71554 $
- Author:
- sstark@redhat.com, abrock@redhat.com
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatementgetUnderlyingStatement()Get the underlying statement
-
-
-
Method Detail
-
getUnderlyingStatement
Statement getUnderlyingStatement() throws SQLException
Get the underlying statement- Returns:
- the underlying statement
- Throws:
SQLException- when already closed
-
-