Class JdbcConnectionAccessProvidedConnectionImpl
- java.lang.Object
-
- org.hibernate.tool.schema.internal.exec.JdbcConnectionAccessProvidedConnectionImpl
-
- All Implemented Interfaces:
Serializable
,JdbcConnectionAccess
public class JdbcConnectionAccessProvidedConnectionImpl extends Object implements JdbcConnectionAccess
Implementation of JdbcConnectionAccess for cases where we are provided a JDBC Connection to use.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JdbcConnectionAccessProvidedConnectionImpl(Connection jdbcConnection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Connection
obtainConnection()
Obtain a JDBC connectionvoid
releaseConnection(Connection connection)
Release a previously obtained connectionboolean
supportsAggressiveRelease()
Does the underlying provider of connections support aggressive releasing of connections (and re-acquisition of those connections later, if need be) in JTA environments?
-
-
-
Constructor Detail
-
JdbcConnectionAccessProvidedConnectionImpl
public JdbcConnectionAccessProvidedConnectionImpl(Connection jdbcConnection)
-
-
Method Detail
-
obtainConnection
public Connection obtainConnection() throws SQLException
Description copied from interface:JdbcConnectionAccess
Obtain a JDBC connection- Specified by:
obtainConnection
in interfaceJdbcConnectionAccess
- Returns:
- The obtained connection
- Throws:
SQLException
- Indicates a problem getting the connection
-
releaseConnection
public void releaseConnection(Connection connection) throws SQLException
Description copied from interface:JdbcConnectionAccess
Release a previously obtained connection- Specified by:
releaseConnection
in interfaceJdbcConnectionAccess
- Parameters:
connection
- The connection to release- Throws:
SQLException
- Indicates a problem releasing the connection
-
supportsAggressiveRelease
public boolean supportsAggressiveRelease()
Description copied from interface:JdbcConnectionAccess
Does the underlying provider of connections support aggressive releasing of connections (and re-acquisition of those connections later, if need be) in JTA environments?- Specified by:
supportsAggressiveRelease
in interfaceJdbcConnectionAccess
- Returns:
- true/false
- See Also:
ConnectionProvider.supportsAggressiveRelease()
,MultiTenantConnectionProvider.supportsAggressiveRelease()
-
-