oracle.jdbc.pool
Class OracleConnectionPoolDataSource

java.lang.Object
  |
  +--oracle.jdbc.pool.OracleDataSource
        |
        +--oracle.jdbc.pool.OracleConnectionPoolDataSource
Direct Known Subclasses:
OracleXADataSource

public class OracleConnectionPoolDataSource
extends OracleDataSource
implements javax.sql.ConnectionPoolDataSource

A DataSource object is a factory for Connection objects. An object that implements the DataSource interface will typically be registered with a JNDI service provider. A JDBC driver that is accessed via the DataSource API does not automatically register itself with the DriverManager.

See Also:
Serialized Form

Constructor Summary
OracleConnectionPoolDataSource()
           
 
Method Summary
 javax.sql.PooledConnection getPooledConnection()
          Attempt to establish a database connection.
 javax.sql.PooledConnection getPooledConnection(java.lang.String user, java.lang.String passwd)
          Attempt to establish a database connection.
 
Methods inherited from class oracle.jdbc.pool.OracleDataSource
getConnection, getConnection, getDatabaseName, getDataSourceName, getDescription, getDriverType, getLoginTimeout, getLogWriter, getNetworkProtocol, getPortNumber, getReference, getServerName, getTNSEntryName, getURL, getUser, setDatabaseName, setDataSourceName, setDescription, setDriverType, setLoginTimeout, setLogWriter, setNetworkProtocol, setPassword, setPortNumber, setServerName, setTNSEntryName, setURL, setUser
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OracleConnectionPoolDataSource

public OracleConnectionPoolDataSource()
                               throws java.sql.SQLException
Method Detail

getPooledConnection

public javax.sql.PooledConnection getPooledConnection()
                                               throws java.sql.SQLException

Attempt to establish a database connection.

Specified by:
getPooledConnection in interface javax.sql.ConnectionPoolDataSource
Returns:
a PooledConnection to the database
Throws:
java.sql.SQLException - if a database-access error occurs.

getPooledConnection

public javax.sql.PooledConnection getPooledConnection(java.lang.String user,
                                                      java.lang.String passwd)
                                               throws java.sql.SQLException

Attempt to establish a database connection.

Specified by:
getPooledConnection in interface javax.sql.ConnectionPoolDataSource
Parameters:
user - the database user on whose behalf the Connection is being made
password - the user's password
Returns:
a PooledConnection to the database
Throws:
java.sql.SQLException - if a database-access error occurs.