org.onetwo.common.db.filequery.SqlAndValues Maven / Gradle / Ivy
The newest version!
package org.onetwo.common.db.filequery;
import java.util.List;
import java.util.Map;
import org.onetwo.common.db.ParsedSqlContext;
public class SqlAndValues implements ParsedSqlContext {
private String parsedSql;
final private Object values;
final private boolean namedValue;
public SqlAndValues(boolean namedValue, String parsedSql, Object values) {
super();
this.namedValue = namedValue;
this.parsedSql = parsedSql;
this.values = values;
}
@Override
public Map asMap() {
return getValues();
}
@Override
public List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy