fun.langel.cql.datasource.DataSource Maven / Gradle / Ivy
The newest version!
package fun.langel.cql.datasource;
import fun.langel.cql.datasource.support.EmptyDataSource;
/**
* @author [email protected](GuHan)
* @since 2022/3/18 17:05
**/
public interface DataSource {
DataSource EMPTY = new EmptyDataSource();
DataSourceType type();
Connection getConnection();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy