/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
 */
package org.hibernate.tool.hbm2ddl;

import java.sql.Connection;
import java.sql.SQLException;

import org.hibernate.engine.jdbc.spi.SqlExceptionHelper;

A ConnectionHelper implementation based on an explicitly supplied connection.
Author:Steve Ebersole
Deprecated:Everything in this package has been replaced with SchemaManagementTool and friends.
/** * A {@link ConnectionHelper} implementation based on an explicitly supplied * connection. * * @author Steve Ebersole * * @deprecated Everything in this package has been replaced with * {@link org.hibernate.tool.schema.spi.SchemaManagementTool} and friends. */
@Deprecated class SuppliedConnectionHelper implements ConnectionHelper { private Connection connection; private boolean toggleAutoCommit; private final SqlExceptionHelper sqlExceptionHelper; public SuppliedConnectionHelper(Connection connection, SqlExceptionHelper sqlExceptionHelper) { this.connection = connection; this.sqlExceptionHelper = sqlExceptionHelper; } public void prepare(boolean needsAutoCommit) throws SQLException { toggleAutoCommit = needsAutoCommit && !connection.getAutoCommit(); if ( toggleAutoCommit ) { try { connection.commit(); } catch( Throwable ignore ) { // might happen with a managed connection } connection.setAutoCommit( true ); } } public Connection getConnection() { return connection; } public void release() throws SQLException { sqlExceptionHelper.logAndClearWarnings( connection ); if ( toggleAutoCommit ) { connection.setAutoCommit( false ); } connection = null; } }