All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.engine.jdbc.connections.internal.DriverConnectionCreator Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
Show newest version
/*
 * 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 .
 */
package org.hibernate.engine.jdbc.connections.internal;

import java.sql.Connection;
import java.sql.Driver;
import java.sql.SQLException;
import java.util.Properties;

import org.hibernate.service.spi.ServiceRegistryImplementor;

/**
 * A specialized ConnectionCreator which uses {@link Driver#connect} to generate Connections
 *
 * @author Steve Ebersole
 */
public class DriverConnectionCreator extends BasicConnectionCreator {
	private final Driver driver;

	public DriverConnectionCreator(
			Driver driver,
			ServiceRegistryImplementor serviceRegistry,
			String url,
			Properties connectionProps,
			Boolean autocommit,
			Integer isolation) {
		super( serviceRegistry, url, connectionProps, autocommit, isolation );
		this.driver = driver;
	}

	@Override
	protected Connection makeConnection(String url, Properties connectionProps) {
		try {
			return driver.connect( url, connectionProps );
		}
		catch (SQLException e) {
			throw convertSqlException( "Error calling Driver#connect", e );
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy