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

schemacrawler.spring.boot.ext.ConnectionProvider Maven / Gradle / Ivy

The newest version!
package schemacrawler.spring.boot.ext;

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

public interface ConnectionProvider {

	 /**
     * This should return a new connection every time it is called.
     * @return the SQL connection object.
     * @throws SQLException if a database error occurs.
     */
    Connection getConnection() throws SQLException;
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy