org.apache.commons.dbcp.managed
Class PoolableManagedConnectionFactory
java.lang.Object
org.apache.commons.dbcp.PoolableConnectionFactory
org.apache.commons.dbcp.managed.PoolableManagedConnectionFactory
- All Implemented Interfaces:
- PoolableObjectFactory
public class PoolableManagedConnectionFactory
- extends PoolableConnectionFactory
A PoolableConnectionFactory that creates PoolableManagedConnections.
- Version:
- $Revision: 892307 $ $Date: 2013-12-31 23:27:28 +0000 (Tue, 31 Dec 2013) $
| Fields inherited from class org.apache.commons.dbcp.PoolableConnectionFactory |
_config, _connectionInitSqls, _connFactory, _defaultAutoCommit, _defaultCatalog, _defaultReadOnly, _defaultTransactionIsolation, _pool, _stmtPoolFactory, _validationQuery, _validationQueryTimeout |
|
Constructor Summary |
PoolableManagedConnectionFactory(XAConnectionFactory connFactory,
ObjectPool pool,
KeyedObjectPoolFactory stmtPoolFactory,
String validationQuery,
boolean defaultReadOnly,
boolean defaultAutoCommit)
Create a PoolableManagedConnectionFactory and attach it to a connection pool. |
PoolableManagedConnectionFactory(XAConnectionFactory connFactory,
ObjectPool pool,
KeyedObjectPoolFactory stmtPoolFactory,
String validationQuery,
int validationQueryTimeout,
Collection connectionInitSqls,
Boolean defaultReadOnly,
boolean defaultAutoCommit,
int defaultTransactionIsolation,
String defaultCatalog,
AbandonedConfig config)
Create a PoolableManagedConnectionFactory and attach it to a connection pool. |
| Methods inherited from class org.apache.commons.dbcp.PoolableConnectionFactory |
activateObject, destroyObject, getPool, initializeConnection, passivateObject, setConnectionFactory, setConnectionInitSql, setDefaultAutoCommit, setDefaultCatalog, setDefaultReadOnly, setDefaultTransactionIsolation, setPool, setStatementPoolFactory, setValidationQuery, setValidationQueryTimeout, validateConnection, validateObject |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
PoolableManagedConnectionFactory
public PoolableManagedConnectionFactory(XAConnectionFactory connFactory,
ObjectPool pool,
KeyedObjectPoolFactory stmtPoolFactory,
String validationQuery,
boolean defaultReadOnly,
boolean defaultAutoCommit)
- Create a PoolableManagedConnectionFactory and attach it to a connection pool.
- Parameters:
connFactory - XAConnectionFactorypool - connection poolstmtPoolFactory - the KeyedObjectPoolFactory to use to create KeyedObjectPools for pooling
PreparedStatements, or null to disable PreparedStatement poolingvalidationQuery - a query to use to validate Connections.
Should return at least one row. Using null turns off validation.defaultReadOnly - the default "read only" setting for borrowed ConnectionsdefaultAutoCommit - the default "auto commit" setting for returned Connections
PoolableManagedConnectionFactory
public PoolableManagedConnectionFactory(XAConnectionFactory connFactory,
ObjectPool pool,
KeyedObjectPoolFactory stmtPoolFactory,
String validationQuery,
int validationQueryTimeout,
Collection connectionInitSqls,
Boolean defaultReadOnly,
boolean defaultAutoCommit,
int defaultTransactionIsolation,
String defaultCatalog,
AbandonedConfig config)
- Create a PoolableManagedConnectionFactory and attach it to a connection pool.
- Parameters:
connFactory - XAConnectionFactorypool - connection poolstmtPoolFactory - the KeyedObjectPoolFactory to use to create KeyedObjectPools for pooling
PreparedStatements, or null to disable PreparedStatement poolingvalidationQuery - a query to use to validate Connections.
Should return at least one row. Using null turns off validation.validationQueryTimeout - the number of seconds that validation queries will wait for database response
before failing. Use a value less than or equal to 0 for no timeout.connectionInitSqls - a Collection of SQL statements to initialize Connections.
Using null turns off initialization.defaultReadOnly - the default "read only" setting for borrowed ConnectionsdefaultAutoCommit - the default "auto commit" setting for returned ConnectionsdefaultTransactionIsolation - the default "Transaction Isolation" setting for returned ConnectionsdefaultCatalog - the default "catalog" setting for returned Connectionsconfig - the AbandonedConfig if tracing SQL objects
makeObject
public Object makeObject()
throws Exception
- Uses the configured XAConnectionFactory to create a
PoolableManagedConnection.
Throws IllegalStateException if the connection factory returns null.
Also initializes the connection using configured initialization sql (if provided)
and sets up a prepared statement pool associated with the PoolableManagedConnection
if statement pooling is enabled.
- Specified by:
makeObject in interface PoolableObjectFactory- Overrides:
makeObject in class PoolableConnectionFactory
- Throws:
Exception
Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.