| java.lang.Object org.lateralnz.c3d.DCConnection
DCConnection | public class DCConnection implements Connection,Serializable(Code) | | an implementation of database connection. This also implements XAResource so
we can provide some necessary functionality to the simpletrans package -- some of
this stuff is a bit on the hacky side (with the excuse that some of the trans api docs
are less than clear, and hardly what one could call straightforward to implement).
I recommend -not- using this package if you're using any other transaction manager,
because it is not correctly implemented (at the moment).
|
Method Summary | |
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 void | finalize() | public boolean | getAutoCommit() | public String | getCatalog() | DatabaseEngine | getDatabaseEngine() | public int | getHoldability() | public DatabaseMetaData | getMetaData() | protected Connection | getRealConnection() | public int | getTransactionIsolation() | public Map | getTypeMap() | public SQLWarning | getWarnings() | public boolean | isClosed() | public boolean | isReadOnly() | public String | nativeSQL(String str) | public CallableStatement | prepareCall(String str) | public CallableStatement | prepareCall(String str, int resultsetType, int resultsetConcurrency) | public CallableStatement | prepareCall(String str, int resultsetType, int resultsetConcurrency, int resultsetHoldability) | public PreparedStatement | prepareStatement(String str) | public PreparedStatement | prepareStatement(String str, int autoGeneratedKeys) | public PreparedStatement | prepareStatement(String str, int[] columnIndexes) | public PreparedStatement | prepareStatement(String str, String[] columnNames) | public PreparedStatement | prepareStatement(String str, int resultsetType, int resultsetConcurrency) | public PreparedStatement | prepareStatement(String str, int resultsetType, int resultsetConcurrency, int resultsetHoldability) | public void | releaseSavepoint(Savepoint savepoint) | public void | rollback() | public void | rollback(Savepoint savepoint) | public void | setAutoCommit(boolean param) | public void | setCatalog(String str) | public void | setHoldability(int param) | public void | setReadOnly(boolean param) | public Savepoint | setSavepoint() | public Savepoint | setSavepoint(String str) | public void | setTransactionIsolation(int param) | public void | setTypeMap(Map map) |
blockCache | protected boolean blockCache(Code) | | |
createStatement | public Statement createStatement(int resultsetType, int resultsetConcurrency, int resultsetHoldability) throws SQLException(Code) | | |
rollback | public void rollback(Savepoint savepoint) throws SQLException(Code) | | rollback to a savepoint is not supported by this connection
|
setTransactionIsolation | public void setTransactionIsolation(int param) throws SQLException(Code) | | |
|
|