public class JdbcConnection extends AbstractJdbcConnection
m_connection, m_encounteredError, m_lastUsed, m_pool, m_testAge, m_testException, m_testStatement| Constructor and Description |
|---|
JdbcConnection(java.sql.Connection connection,
java.lang.String keepAlive)
Deprecated.
|
JdbcConnection(java.sql.Connection connection,
java.lang.String keepAlive,
int keepAliveAge)
Deprecated.
|
clearAllocatedStatements, close, dispose, enableLogging, equals, getConnection, initialize, invoke, isClosed, recycle, registerAllocatedStatement, setPool, setProxiedConnectionpublic JdbcConnection(java.sql.Connection connection,
java.lang.String keepAlive)
connection - a driver specific JDBC connection to be wrapped.keepAlive - a query which will be used to check the statis of the connection after it
has been idle. A null value will cause the keep alive feature to
be disabled.public JdbcConnection(java.sql.Connection connection,
java.lang.String keepAlive,
int keepAliveAge)
connection - a driver specific JDBC connection to be wrapped.keepAlive - a query which will be used to check the statis of the connection after it
has been idle. A null value will cause the keep alive feature to
be disabled.keepAliveAge - the maximum age in milliseconds since a connection was last
used before it must be pinged using the keepAlive query. Ignored
if keepAlive is null.