schemacrawler.spring.boot.ext.ConnectionProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-schemacrawler Show documentation
Show all versions of spring-boot-starter-schemacrawler Show documentation
Spring Boot Starter For Schemacrawler
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;
}