Method Summary |
|
public void | clearWarnings() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public void | close() Marks the Connection as closed, and notifies the pool that the
pooled connection is available.
In accordance with the jdbc specification this Connection cannot
be used after closed() is called. |
public void | commit() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public Statement | createStatement() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public Statement | createStatement(int resultSetType, int resultSetConcurrency) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public Statement | createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) |
protected void | finalize() The finalizer helps prevent ConnectionPool leakage. |
public boolean | getAutoCommit() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public String | getCatalog() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public int | getHoldability() |
public DatabaseMetaData | getMetaData() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public int | getTransactionIsolation() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public Map | getTypeMap() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public SQLWarning | getWarnings() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public boolean | isClosed() Returns true after close() is called, and false prior to that. |
public boolean | isReadOnly() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public String | nativeSQL(String sql) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public CallableStatement | prepareCall(String sql) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) |
public PreparedStatement | prepareStatement(String sql) If pooling of PreparedStatement s is turned on in the
DriverAdapterCPDS , a pooled object may be returned, otherwise
delegate to the wrapped jdbc 1.x
java.sql.Connection . |
public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency) If pooling of PreparedStatement s is turned on in the
DriverAdapterCPDS , a pooled object may be returned, otherwise
delegate to the wrapped jdbc 1.x
java.sql.Connection . |
public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) |
public PreparedStatement | prepareStatement(String sql, int autoGeneratedKeys) |
public PreparedStatement | prepareStatement(String sql, int columnIndexes) |
public PreparedStatement | prepareStatement(String sql, String columnNames) |
public void | releaseSavepoint(java.sql.Savepoint savepoint) |
public void | rollback() Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public void | rollback(java.sql.Savepoint savepoint) |
public void | setAutoCommit(boolean b) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public void | setCatalog(String catalog) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public void | setHoldability(int holdability) |
public void | setReadOnly(boolean readOnly) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public java.sql.Savepoint | setSavepoint() |
public java.sql.Savepoint | setSavepoint(String name) |
public void | setTransactionIsolation(int level) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |
public void | setTypeMap(Map map) Pass thru method to the wrapped jdbc 1.x
java.sql.Connection . |