| java.lang.Object org.enhydra.jdbc.util.JdbcUtil org.enhydra.jdbc.core.CoreConnection
All known Subclasses: org.enhydra.jdbc.standard.StandardConnectionHandle,
CoreConnection | abstract public class CoreConnection extends JdbcUtil implements Connection(Code) | | This is an implementation of java.sql.Connection which simply delegates
everything to an underlying physical implemention of the same interface.
|
Method Summary | |
abstract public void | catchInvoke(SQLException e) | public void | clearWarnings() | public void | close() | public void | commit() | public Statement | createStatement() | public Statement | createStatement(int resultSetType, int resultSetConcurrency) | public Statement | createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public boolean | getAutoCommit() | public String | getCatalog() | public int | getHoldability() | public DatabaseMetaData | getMetaData() | public int | getTransactionIsolation() | public Map | getTypeMap() | public SQLWarning | getWarnings() | public boolean | isClosed() | public boolean | isReadOnly() | public String | nativeSQL(String sql) | abstract public void | preInvoke() Methods used to do some works before and during the catch clause, to
prevent the pool that a connection is broken. | public CallableStatement | prepareCall(String sql) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public PreparedStatement | prepareStatement(String sql) | public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency) | public PreparedStatement | prepareStatement(String sql, int autoGeneratedKeys) | public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public PreparedStatement | prepareStatement(String sql, int[] columnIndexes) | public PreparedStatement | prepareStatement(String sql, String[] columnNames) | public void | releaseSavepoint(java.sql.Savepoint savepoint) | public void | rollback() | public void | rollback(java.sql.Savepoint savepoint) | public void | setAutoCommit(boolean autoCommit) | public void | setCatalog(String catalog) | public void | setHoldability(int holdability) | public void | setReadOnly(boolean readOnly) | public java.sql.Savepoint | setSavepoint() | public java.sql.Savepoint | setSavepoint(String name) | public void | setTransactionIsolation(int level) | public void | setTypeMap(Map map) |
CoreConnection | public CoreConnection()(Code) | | |
createStatement | public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code) | | |
preInvoke | abstract public void preInvoke() throws SQLException(Code) | | Methods used to do some works before and during the catch clause, to
prevent the pool that a connection is broken.
|
setTransactionIsolation | public void setTransactionIsolation(int level) throws SQLException(Code) | | |
|
|