Modifier and Type | Field and Description |
---|---|
protected static HashMap |
_pools
The map of registered pools.
|
protected static int |
MAJOR_VERSION |
protected static int |
MINOR_VERSION |
protected static String |
URL_PREFIX
My URL prefix
|
protected static int |
URL_PREFIX_LEN |
Constructor and Description |
---|
PoolingDriver() |
Modifier and Type | Method and Description |
---|---|
boolean |
acceptsURL(String url) |
void |
closePool(String name) |
Connection |
connect(String url,
Properties info) |
ObjectPool |
getConnectionPool(String name) |
int |
getMajorVersion() |
int |
getMinorVersion() |
Logger |
getParentLogger() |
ObjectPool |
getPool(String name) |
String[] |
getPoolNames() |
DriverPropertyInfo[] |
getPropertyInfo(String url,
Properties info) |
void |
invalidateConnection(Connection conn)
Invalidates the given connection.
|
static boolean |
isAccessToUnderlyingConnectionAllowed()
Returns the value of the accessToUnderlyingConnectionAllowed property.
|
boolean |
jdbcCompliant() |
void |
registerPool(String name,
ObjectPool pool) |
static void |
setAccessToUnderlyingConnectionAllowed(boolean allow)
Sets the value of the accessToUnderlyingConnectionAllowed property.
|
protected static final HashMap _pools
protected static final String URL_PREFIX
protected static final int URL_PREFIX_LEN
protected static final int MAJOR_VERSION
protected static final int MINOR_VERSION
public static boolean isAccessToUnderlyingConnectionAllowed()
public static void setAccessToUnderlyingConnectionAllowed(boolean allow)
allow
- Access to the underlying connection is granted when true.public ObjectPool getPool(String name)
public ObjectPool getConnectionPool(String name) throws SQLException
SQLException
public void registerPool(String name, ObjectPool pool)
public void closePool(String name) throws SQLException
SQLException
public String[] getPoolNames()
public boolean acceptsURL(String url) throws SQLException
acceptsURL
in interface Driver
SQLException
public Connection connect(String url, Properties info) throws SQLException
connect
in interface Driver
SQLException
public void invalidateConnection(Connection conn) throws SQLException
conn
- connection to invalidateSQLException
- if the connection is not a
PoolGuardConnectionWrapper
or an error occurs invalidating
the connectionpublic int getMajorVersion()
getMajorVersion
in interface Driver
public int getMinorVersion()
getMinorVersion
in interface Driver
public boolean jdbcCompliant()
jdbcCompliant
in interface Driver
public DriverPropertyInfo[] getPropertyInfo(String url, Properties info)
getPropertyInfo
in interface Driver
public Logger getParentLogger() throws SQLFeatureNotSupportedException
getParentLogger
in interface Driver
SQLFeatureNotSupportedException
Copyright © 2015. All rights reserved.