| java.lang.Object org.objectweb.jonas.dbm.JConnection
Method Summary | |
public void | clearWarnings() | public void | close() Trigger an event to the listener. | public void | commit() In a JDBC-XA driver, Connection.commit is only called if we are outside a
global transaction. | 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 Connection | getConnection() | public int | getHoldability() | public DatabaseMetaData | getMetaData() | public int | getTransactionIsolation() | public Map | getTypeMap() | public SQLWarning | getWarnings() | public boolean | isClosed() | public boolean | isPhysicallyClosed() | public boolean | isReadOnly() | public String | nativeSQL(String sql) | public CallableStatement | prepareCall(String sql) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency) | 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() In a JDBC-XA driver, Connection.rollback is only called if we are outside
a global transaction. | 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) |
autocommit_set | protected boolean autocommit_set(Code) | | |
autocommit_unset | protected boolean autocommit_unset(Code) | | |
commit | public void commit() throws SQLException(Code) | | In a JDBC-XA driver, Connection.commit is only called if we are outside a
global transaction.
|
createStatement | public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code) | | |
getAutoCommit | public boolean getAutoCommit() throws SQLException(Code) | | In a JDBC-XA driver, autocommit is false if we are in a global Tx
|
getConnection | public Connection getConnection()(Code) | | Get the actual connection on database
|
rollback | public void rollback() throws SQLException(Code) | | In a JDBC-XA driver, Connection.rollback is only called if we are outside
a global transaction.
|
setAutoCommit | public void setAutoCommit(boolean autoCommit) throws SQLException(Code) | | In a JDBC-XA driver, autocommit is false if we are in a global Tx
|
setTransactionIsolation | public void setTransactionIsolation(int level) throws SQLException(Code) | | |
|
|