org.n3r.eql.parser.StaticSql 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.parser;
import org.n3r.eql.map.EqlRun;
public class StaticSql implements Sql {
private String sql;
public StaticSql(String sql) {
this.sql = sql;
}
public String getSql() {
return sql;
}
@Override
public String evalSql(EqlRun eqlRun) {
return sql;
}
}