org.fluentjdbc.DatabaseQueriable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-jdbc Show documentation
Show all versions of fluent-jdbc Show documentation
A Java library used to execute JDBC statements and build SQL
package org.fluentjdbc;
import javax.annotation.Nullable;
import java.util.Collection;
import java.util.List;
public interface DatabaseQueriable> {
T whereExpressionWithMultipleParameters(String expression, Collection> parameters);
T whereExpression(String expression, @Nullable Object value);
T whereExpression(String expression);
T whereOptional(String fieldName, @Nullable Object value);
T whereIn(String fieldName, Collection> parameters);
T whereAll(List fields, List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy