All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----oracle.jdbc.pool.OraclePooledConnection
An OraclePooledConnection object is a connection object that provides hooks for connection pool management. A PooledConnection object represents a physical connection to a data source. It implements javax.sql.PooledConnection
Create a Pooled Connection.
Create a Pooled Connection.
Creates a PooledConnection.
Creates a PooledConnection.
Add an event listener.
Close the physical connection.
Create an object handle for this physical connection.
Remove an event listener.
public OraclePooledConnection()
public OraclePooledConnection(String url) throws SQLException
Creates a PooledConnection.
public OraclePooledConnection(String url, String user, String passwd) throws SQLException
Creates a PooledConnection.
public OraclePooledConnection(Connection pc)
Create a Pooled Connection.
public OraclePooledConnection(Connection pc, boolean ac)
Create a Pooled Connection.
public synchronized void addConnectionEventListener(ConnectionEventListener cel)
Add an event listener.
public synchronized void close() throws SQLException
Close the physical connection.
public synchronized Connection getConnection() throws SQLException
Create an object handle for this physical connection. The object returned is a temporary handle used by application code to refer to a physical connection that is being pooled.
public synchronized void removeConnectionEventListener(ConnectionEventListener cel)
Remove an event listener.
All Packages Class Hierarchy This Package Previous Next Index