| java.lang.Object com.versant.core.jdbc.conn.LoggingConnection com.versant.core.jdbc.conn.PooledConnection
Method Summary | |
public void | clearWarnings() | public void | close() This is just going to return the connection to the pool. | public void | commit() | public Statement | createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public Statement | createStatement(int resultSetType, int resultSetConcurrency) | public Statement | createStatement() | public void | destroy() Forceably close the real connection and set a flag to make sure this
connection will not go back in the pool. | public boolean | getAutoCommit() | public boolean | getCachedAutoCommit() | public int | getCachedTransactionIsolation() | public String | getCatalog() | public int | getHoldability() | public synchronized long | getLastActivityTime() | public DatabaseMetaData | getMetaData() | public JDBCConnectionPool | getPool() | public int | getTransactionIsolation() | public java.util.Map | getTypeMap() | public SQLWarning | getWarnings() | public boolean | isClosed() | public boolean | isDestroyed() | public boolean | isReadOnly() | public String | nativeSQL(String sql) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency) | public CallableStatement | prepareCall(String sql) | 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 PreparedStatement | prepareStatement(String sql) | public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency) | public void | releaseSavepoint(Savepoint savepoint) | public void | returnPreparedStatement(PooledPreparedStatement ps) Return ps to the pool. | public void | rollback(Savepoint savepoint) | public void | rollback() | public void | setAutoCommit(boolean autoCommit) | public void | setCatalog(String catalog) | public void | setHoldability(int holdability) | public void | setReadOnly(boolean readOnly) | public Savepoint | setSavepoint() | public Savepoint | setSavepoint(String name) | public void | setTransactionIsolation(int level) | public void | setTypeMap(java.util.Map map) | public synchronized void | updateLastActivityTime() |
close | public void close()(Code) | | This is just going to return the connection to the pool.
|
createStatement | public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code) | | |
destroy | public void destroy()(Code) | | Forceably close the real connection and set a flag to make sure this
connection will not go back in the pool. Any exceptions on close
are silently discarded. This is a NOP if the connection has already
been destroyed.
See Also: PooledConnection.isDestroyed() |
getCachedAutoCommit | public boolean getCachedAutoCommit()(Code) | | |
getCachedTransactionIsolation | public int getCachedTransactionIsolation() throws SQLException(Code) | | |
getLastActivityTime | public synchronized long getLastActivityTime()(Code) | | |
setTransactionIsolation | public void setTransactionIsolation(int level) throws SQLException(Code) | | |
updateLastActivityTime | public synchronized void updateLastActivityTime()(Code) | | |
Methods inherited from com.versant.core.jdbc.conn.LoggingConnection | public void clearWarnings() throws SQLException(Code)(Java Doc) public void close() throws SQLException(Code)(Java Doc) public void closeRealConnection() throws SQLException(Code)(Java Doc) public void commit() throws SQLException(Code)(Java Doc) public Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code)(Java Doc) public Statement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException(Code)(Java Doc) public Statement createStatement() throws SQLException(Code)(Java Doc) public boolean getAutoCommit() throws SQLException(Code)(Java Doc) public String getCatalog() throws SQLException(Code)(Java Doc) public java.sql.Connection getCon()(Code)(Java Doc) public int getHoldability() throws SQLException(Code)(Java Doc) public DatabaseMetaData getMetaData() throws SQLException(Code)(Java Doc) public PreparedStatementPool getPsPool()(Code)(Java Doc) public int getTransactionIsolation() throws SQLException(Code)(Java Doc) public java.util.Map getTypeMap() throws SQLException(Code)(Java Doc) public SQLWarning getWarnings() throws SQLException(Code)(Java Doc) public boolean isClosed() throws SQLException(Code)(Java Doc) public boolean isNeedsValidation()(Code)(Java Doc) public boolean isReadOnly() throws SQLException(Code)(Java Doc) public String nativeSQL(String sql) throws SQLException(Code)(Java Doc) public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code)(Java Doc) public CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException(Code)(Java Doc) public CallableStatement prepareCall(String sql) throws SQLException(Code)(Java Doc) public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException(Code)(Java Doc) public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException(Code)(Java Doc) public PreparedStatement prepareStatement(String sql, int columnIndexes) throws SQLException(Code)(Java Doc) public PreparedStatement prepareStatement(String sql, String columnNames) throws SQLException(Code)(Java Doc) public PreparedStatement prepareStatement(String sql) throws SQLException(Code)(Java Doc) public PreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException(Code)(Java Doc) public PooledPreparedStatement prepareStatementImp(String sql, int resultSetType, int resultSetConcurrency, PreparedStatementPool.Key key) throws SQLException(Code)(Java Doc) public void releaseSavepoint(Savepoint savepoint) throws SQLException(Code)(Java Doc) public void returnPreparedStatement(PooledPreparedStatement ps) throws SQLException(Code)(Java Doc) public void rollback(Savepoint savepoint) throws SQLException(Code)(Java Doc) public void rollback() throws SQLException(Code)(Java Doc) public void setAutoCommit(boolean autoCommit) throws SQLException(Code)(Java Doc) public void setCatalog(String catalog) throws SQLException(Code)(Java Doc) public void setHoldability(int holdability) throws SQLException(Code)(Java Doc) public void setNeedsValidation(boolean needsValidation)(Code)(Java Doc) public void setReadOnly(boolean readOnly) throws SQLException(Code)(Java Doc) public Savepoint setSavepoint() throws SQLException(Code)(Java Doc) public Savepoint setSavepoint(String name) throws SQLException(Code)(Java Doc) public void setTransactionIsolation(int level) throws SQLException(Code)(Java Doc) public void setTypeMap(java.util.Map map) throws SQLException(Code)(Java Doc)
|
|
|