Uses of Class
com.feedzai.commons.sql.abstraction.dml.Query
-
Packages that use Query Package Description com.feedzai.commons.sql.abstraction.dml Contains classes to build DML statements.com.feedzai.commons.sql.abstraction.dml.dialect Contains an SQL builder.com.feedzai.commons.sql.abstraction.engine Contains the database engine core.com.feedzai.commons.sql.abstraction.engine.impl Database specific implementations. -
-
Uses of Query in com.feedzai.commons.sql.abstraction.dml
Methods in com.feedzai.commons.sql.abstraction.dml that return Query Modifier and Type Method Description QueryQuery. andWhere(Expression where)The WHERE clause.QueryQuery. distinct()Sets the SELECT expression as DISTINCT.QueryQuery. forUpdate(boolean forUpdate)Sets whether query is FOR UPDATE or not.QueryQuery. from(Expression... fromColumns)Adds the FROM columns.QueryQuery. from(Collection<? extends Expression> fromColumns)Adds the FROM columns.QueryQuery. groupby(Expression... groupbyColumns)Adds the GROUP BY columns.QueryQuery. groupby(Collection<? extends Expression> groupbyColumns)Adds the GROUP BY columns.QueryQuery. having(Expression having)Adds the HAVING expression.QueryQuery. limit(Integer limit)Sets the limit.QueryQuery. offset(Integer offset)Sets the offset.QueryQuery. orderby(Expression... orderbyColumns)Adds the ORDER BY columns.QueryQuery. orderby(Collection<? extends Expression> orderbyColumns)Adds the ORDER BY columns.QueryQuery. select(Expression... selectColumns)Adds the SELECT columns.QueryQuery. select(Collection<? extends Expression> selectColumns)Adds the SELECT columns.QueryQuery. where(Expression where)The where clause. -
Uses of Query in com.feedzai.commons.sql.abstraction.dml.dialect
Methods in com.feedzai.commons.sql.abstraction.dml.dialect that return Query Modifier and Type Method Description static QuerySqlBuilder. select(Expression... select)Starts a new query.static QuerySqlBuilder. select(Collection<? extends Expression> select)Starts a new query. -
Uses of Query in com.feedzai.commons.sql.abstraction.engine
Methods in com.feedzai.commons.sql.abstraction.engine with parameters of type Query Modifier and Type Method Description abstract StringAbstractTranslator. translate(Query q)TranslatesQuery. -
Uses of Query in com.feedzai.commons.sql.abstraction.engine.impl
Methods in com.feedzai.commons.sql.abstraction.engine.impl with parameters of type Query Modifier and Type Method Description StringDB2Translator. translate(Query q)StringH2Translator. translate(Query q)StringMySqlTranslator. translate(Query q)StringOracleTranslator. translate(Query q)StringPostgreSqlTranslator. translate(Query q)StringSqlServerTranslator. translate(Query q)
-