Package net.officefloor.jdbc.pool
Interface ThreadLocalJdbcConnectionPool.CompiledConnectionWrapper
-
- All Superinterfaces:
ConnectionWrapper
- Enclosing class:
- ThreadLocalJdbcConnectionPool
public static interface ThreadLocalJdbcConnectionPool.CompiledConnectionWrapper extends ConnectionWrapper
Interface on compiledConnection
wrapper extract details of theConnection
.
-
-
Field Summary
-
Fields inherited from interface net.officefloor.jdbc.ConnectionWrapper
GET_REAL_CONNECTION_METHOD_NAME
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.sql.Connection
_getConnection()
Obtains theConnection
.ThreadLocalJdbcConnectionPool
_getPool()
Obtains theThreadLocalJdbcConnectionPool
for theConnection
.-
Methods inherited from interface net.officefloor.jdbc.ConnectionWrapper
getRealConnection
-
-
-
-
Method Detail
-
_getConnection
java.sql.Connection _getConnection() throws java.sql.SQLException
Obtains theConnection
.- Returns:
Connection
.- Throws:
java.sql.SQLException
- If fails toConnection
.
-
_getPool
ThreadLocalJdbcConnectionPool _getPool() throws java.sql.SQLException
Obtains theThreadLocalJdbcConnectionPool
for theConnection
.- Returns:
ThreadLocalJdbcConnectionPool
for theConnection
.- Throws:
java.sql.SQLException
- If fails to obtainThreadLocalJdbcConnectionPool
.
-
-