All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.imaginary.sql.msql.MsqlPooledConnection

com.imaginary.sql.msql.MsqlPooledConnection

public class MsqlPooledConnection
Represents a logical database connection using pooled connection resources. The JDBC 2.0 Standard Extension API is very liberal about the underlying mechanisms it allows for the support of connection pooling. This interpretation of that API is based on an established data source stored in a JNDI directory under the MsqlPooledDataSource class name.
Last modified $Date: 1999/07/09 23:16:32 $

Version:
$Revision: 1.1.2.1 $
Author:
George Reese

Method Index

 o addConnectionEventListener(ConnectionEventListener)
 o clearWarnings()
 o close()
 o commit()
 o createStatement()
 o createStatement(int, int)
 o getAutoCommit()
 o getCatalog()
 o getConnection()
 o getMetaData()
 o getTransactionIsolation()
 o getWarnings()
 o isClosed()
 o isReadOnly()
 o nativeSQL(String)
 o prepareCall(String)
 o prepareCall(String, int, int)
 o prepareStatement(String)
 o prepareStatement(String, int, int)
 o removeConnectionEventListener(ConnectionEventListener)
 o rollback()
 o setAutoCommit(boolean)
 o setCatalog(String)
 o setReadOnly(boolean)
 o setTransactionIsolation(int)

Methods

 o addConnectionEventListener
 public void addConnectionEventListener(ConnectionEventListener cel)
 o clearWarnings
 public void clearWarnings() throws SQLException
 o close
 public void close() throws SQLException
 o commit
 public void commit() throws SQLException
 o createStatement
 public Statement createStatement() throws SQLException
 o createStatement
 public Statement createStatement(int rstype,
                                  int rsconcur) throws SQLException
 o getAutoCommit
 public boolean getAutoCommit() throws SQLException
 o getCatalog
 public String getCatalog() throws SQLException
 o getConnection
 public Connection getConnection() throws SQLException
 o getMetaData
 public DatabaseMetaData getMetaData() throws SQLException
 o getTransactionIsolation
 public int getTransactionIsolation() throws SQLException
 o getWarnings
 public SQLWarning getWarnings() throws SQLException
 o isClosed
 public boolean isClosed()
 o isReadOnly
 public boolean isReadOnly() throws SQLException
 o nativeSQL
 public String nativeSQL(String sql) throws SQLException
 o prepareCall
 public CallableStatement prepareCall(String sql) throws SQLException
 o prepareCall
 public CallableStatement prepareCall(String sql,
                                      int type,
                                      int concur) throws SQLException
 o prepareStatement
 public PreparedStatement prepareStatement(String sql) throws SQLException
 o prepareStatement
 public PreparedStatement prepareStatement(String sql,
                                           int type,
                                           int conc) throws SQLException
 o removeConnectionEventListener
 public void removeConnectionEventListener(ConnectionEventListener cel)
 o rollback
 public void rollback() throws SQLException
 o setAutoCommit
 public void setAutoCommit(boolean ac) throws SQLException
 o setCatalog
 public void setCatalog(String cat) throws SQLException
 o setReadOnly
 public void setReadOnly(boolean ro) throws SQLException
 o setTransactionIsolation
 public void setTransactionIsolation(int level) throws SQLException

All Packages  Class Hierarchy  This Package  Previous  Next  Index