org.n3r.eql.trans.EqlConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eql Show documentation
Show all versions of eql Show documentation
a simple wrapper framework for jdbc to seperate sql and java code
package org.n3r.eql.trans;
import org.n3r.eql.config.EqlConfig;
import org.n3r.eql.map.EqlRun;
import java.sql.Connection;
public interface EqlConnection {
void initialize(EqlConfig eqlConfig);
String getDbName(EqlConfig eqlConfig, EqlRun eqlRun);
Connection getConnection(String dbName);
void destroy();
String getDriverName();
String getJdbcUrl();
}