| org.apache.derby.iapi.jdbc.BrokeredStatementControl
All known Subclasses: org.apache.derby.jdbc.XAStatementControl,
BrokeredStatementControl | public interface BrokeredStatementControl (Code) | | Provides control over a BrokeredStatement, BrokeredPreparedStatement or BrokeredCallableStatement
|
checkHoldCursors | public int checkHoldCursors(int holdability) throws SQLException(Code) | | Can cursors be held across commits.
Returns the holdability that should be
used which may be different from the passed
in holdabilty.
|
getRealCallableStatement | public CallableStatement getRealCallableStatement() throws SQLException(Code) | | Return the real JDBC CallableStatement for the brokered statement
when this is controlling a CallableStatement.
|
getRealPreparedStatement | public PreparedStatement getRealPreparedStatement() throws SQLException(Code) | | Return the real JDBC PreparedStatement for the brokered statement
when this is controlling a PreparedStatement.
|
getRealStatement | public Statement getRealStatement() throws SQLException(Code) | | Return the real JDBC statement for the brokered statement
when this is controlling a Statement.
|
wrapResultSet | public ResultSet wrapResultSet(Statement s, ResultSet rs)(Code) | | Optionally wrap a returned ResultSet in another ResultSet.
Parameters: s - Statement that created the ResultSet. |
|
|