1 21 22 package org.apache.derby.iapi.jdbc; 23 24 import java.sql.*; 25 26 29 public interface BrokeredStatementControl 30 { 31 37 public int checkHoldCursors(int holdability) throws SQLException; 38 39 43 public Statement getRealStatement() throws SQLException; 44 45 49 public PreparedStatement getRealPreparedStatement() throws SQLException; 50 51 52 56 public CallableStatement getRealCallableStatement() throws SQLException; 57 58 62 public ResultSet wrapResultSet(Statement s, ResultSet rs); 63 } 64 | Popular Tags |