
eu.drus.jpa.unit.sql.dbunit.ext.DbUnitConnectionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-unit-rdbms Show documentation
Show all versions of jpa-unit-rdbms Show documentation
Makes JPA Unit support SQL databases
The newest version!
/*
*
*/
package eu.drus.jpa.unit.sql.dbunit.ext;
import java.sql.Connection;
import org.dbunit.DatabaseUnitException;
import org.dbunit.database.IDatabaseConnection;
public interface DbUnitConnectionFactory {
boolean supportsDriver(final String driverClass);
IDatabaseConnection createConnection(final Connection connection, final String schema) throws DatabaseUnitException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy