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

io.github.joeljeremy7.externalizedproperties.resolvers.database.ConnectionProvider Maven / Gradle / Ivy

package io.github.joeljeremy7.externalizedproperties.resolvers.database;

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

/**
 * JDBC connection provider. 
 * This abstraction is provided to enable clients to choose whether to 
 * get connections via the JDBC driver manager, data source, or from a connection pool. 
 */
public interface ConnectionProvider {
    /**
     * Get a JDBC connection.
     * 
     * @return The JDBC connection.
     * @throws SQLException if a database-related error occurred.
     */
    Connection getConnection() throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy