1 21 package org.apache.derby.iapi.jdbc; 22 23 import java.sql.Connection ; 24 import java.sql.PreparedStatement ; 25 import java.sql.SQLException ; 26 import java.sql.SQLWarning ; 27 28 import org.apache.derby.iapi.reference.SQLState; 29 import org.apache.derby.iapi.sql.execute.ExecutionContext; 30 import org.apache.derby.impl.jdbc.Util; 31 32 39 public interface EngineConnection extends Connection { 40 41 44 public void setDrdaID(String drdaID); 45 46 60 public void setPrepareIsolation(int level) throws SQLException ; 61 62 65 public int getPrepareIsolation() 66 throws SQLException ; 67 68 75 public PreparedStatement prepareStatement(String sql, int resultSetType, 76 int resultSetConcurrency, int resultSetHoldability) 77 throws SQLException ; 78 79 86 public int getHoldability() throws SQLException ; 87 88 93 public void addWarning(SQLWarning newWarning) 94 throws SQLException ; 95 96 } 97 | Popular Tags |