Package org.apache.commons.dbcp2
Class PoolingDataSource<C extends java.sql.Connection>
- java.lang.Object
-
- org.apache.commons.dbcp2.PoolingDataSource<C>
-
- Type Parameters:
C- The connection type
- All Implemented Interfaces:
java.lang.AutoCloseable,java.sql.Wrapper,javax.sql.CommonDataSource,javax.sql.DataSource
- Direct Known Subclasses:
ManagedDataSource
public class PoolingDataSource<C extends java.sql.Connection> extends java.lang.Object implements javax.sql.DataSource, java.lang.AutoCloseableA simpleDataSourceimplementation that obtainsConnections from the specifiedObjectPool.- Since:
- 2.0
- Version:
- $Id: PoolingDataSource.java 1677110 2015-05-01 11:15:22Z sebb $
- Author:
- Rodney Waldhoff, Glenn L. Nielsen, James House, Dirk Verbeeck
-
-
Constructor Summary
Constructors Constructor Description PoolingDataSource(org.apache.commons.pool2.ObjectPool<C> pool)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()Close and free allConnections from the pool.java.sql.ConnectiongetConnection()Return aConnectionfrom my pool, according to the contract specified byObjectPool.borrowObject().java.sql.ConnectiongetConnection(java.lang.String uname, java.lang.String passwd)ThrowsUnsupportedOperationExceptionintgetLoginTimeout()ThrowsUnsupportedOperationException.java.io.PrintWritergetLogWriter()Returns my log writer.java.util.logging.LoggergetParentLogger()booleanisAccessToUnderlyingConnectionAllowed()Returns the value of the accessToUnderlyingConnectionAllowed property.booleanisWrapperFor(java.lang.Class<?> iface)voidsetAccessToUnderlyingConnectionAllowed(boolean allow)Sets the value of the accessToUnderlyingConnectionAllowed property.voidsetLoginTimeout(int seconds)ThrowsUnsupportedOperationException.voidsetLogWriter(java.io.PrintWriter out)Sets my log writer.<T> Tunwrap(java.lang.Class<T> iface)
-
-
-
Constructor Detail
-
PoolingDataSource
public PoolingDataSource(org.apache.commons.pool2.ObjectPool<C> pool)
-
-
Method Detail
-
close
public void close() throws java.lang.ExceptionClose and free allConnections from the pool.- Specified by:
closein interfacejava.lang.AutoCloseable- Throws:
java.lang.Exception- Since:
- 2.1
-
isAccessToUnderlyingConnectionAllowed
public boolean isAccessToUnderlyingConnectionAllowed()
Returns the value of the accessToUnderlyingConnectionAllowed property.- Returns:
- true if access to the underlying
Connectionis allowed, false otherwise.
-
setAccessToUnderlyingConnectionAllowed
public void setAccessToUnderlyingConnectionAllowed(boolean allow)
Sets the value of the accessToUnderlyingConnectionAllowed property. It controls if the PoolGuard allows access to the underlying connection. (Default: false)- Parameters:
allow- Access to the underlying connection is granted when true.
-
isWrapperFor
public boolean isWrapperFor(java.lang.Class<?> iface) throws java.sql.SQLException- Specified by:
isWrapperForin interfacejava.sql.Wrapper- Throws:
java.sql.SQLException
-
unwrap
public <T> T unwrap(java.lang.Class<T> iface) throws java.sql.SQLException- Specified by:
unwrapin interfacejava.sql.Wrapper- Throws:
java.sql.SQLException
-
getParentLogger
public java.util.logging.Logger getParentLogger() throws java.sql.SQLFeatureNotSupportedException- Specified by:
getParentLoggerin interfacejavax.sql.CommonDataSource- Throws:
java.sql.SQLFeatureNotSupportedException
-
getConnection
public java.sql.Connection getConnection() throws java.sql.SQLExceptionReturn aConnectionfrom my pool, according to the contract specified byObjectPool.borrowObject().- Specified by:
getConnectionin interfacejavax.sql.DataSource- Throws:
java.sql.SQLException
-
getConnection
public java.sql.Connection getConnection(java.lang.String uname, java.lang.String passwd) throws java.sql.SQLExceptionThrowsUnsupportedOperationException- Specified by:
getConnectionin interfacejavax.sql.DataSource- Throws:
java.lang.UnsupportedOperationExceptionjava.sql.SQLException
-
getLogWriter
public java.io.PrintWriter getLogWriter()
Returns my log writer.- Specified by:
getLogWriterin interfacejavax.sql.CommonDataSource- Specified by:
getLogWriterin interfacejavax.sql.DataSource- Returns:
- my log writer
- See Also:
DataSource.getLogWriter()
-
getLoginTimeout
public int getLoginTimeout()
ThrowsUnsupportedOperationException.- Specified by:
getLoginTimeoutin interfacejavax.sql.CommonDataSource- Specified by:
getLoginTimeoutin interfacejavax.sql.DataSource- Throws:
java.lang.UnsupportedOperationException- As this implementation does not support this feature.
-
setLoginTimeout
public void setLoginTimeout(int seconds)
ThrowsUnsupportedOperationException.- Specified by:
setLoginTimeoutin interfacejavax.sql.CommonDataSource- Specified by:
setLoginTimeoutin interfacejavax.sql.DataSource- Throws:
java.lang.UnsupportedOperationException- As this implementation does not support this feature.
-
setLogWriter
public void setLogWriter(java.io.PrintWriter out)
Sets my log writer.- Specified by:
setLogWriterin interfacejavax.sql.CommonDataSource- Specified by:
setLogWriterin interfacejavax.sql.DataSource- See Also:
DataSource.setLogWriter(java.io.PrintWriter)
-
-