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

migratedb.v1.core.api.ConnectionProvider Maven / Gradle / Ivy

The newest version!
package migratedb.v1.core.api;

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

/**
 * A function that provides freshly initialized JDBC connections, possibly from a connection pool.
 */
@FunctionalInterface
public interface ConnectionProvider {
    Connection getConnection() throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy