org.sql2o.connectionsources.ConnectionSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
package org.sql2o.connectionsources;
import java.sql.SQLException;
/**
* An abstraction layer for providing jdbc connection
* to use from {@link org.sql2o.Connection}
* Created by nickl on 09.01.17.
*/
public interface ConnectionSource {
java.sql.Connection getConnection() throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy