Uses of Interface
com.github.eikecochu.sqlbuilder.QueryBuilder
-
Packages that use QueryBuilder Package Description com.github.eikecochu.sqlbuilder com.github.eikecochu.sqlbuilder.mssql com.github.eikecochu.sqlbuilder.mysql com.github.eikecochu.sqlbuilder.oracle -
-
Uses of QueryBuilder in com.github.eikecochu.sqlbuilder
Classes in com.github.eikecochu.sqlbuilder with type parameters of type QueryBuilder Modifier and Type Interface Description interfaceQueryBuilder<T extends QueryBuilder<T>>The QueryBuilder interface that is implemented by all expressions that mark the possible end of a query.Classes in com.github.eikecochu.sqlbuilder that implement QueryBuilder Modifier and Type Class Description classDeleteThe DELETE expression.classExistsThe EXISTS expression.classExpressionExpressions are used to create stored procedure calls.classFromThe FROM expression.classGroupByThe GROUP BY expression.classHavingThe HAVING expression.classInsertThe INSERT expression.classJoinThe JOIN expression.classOrderByThe ORDER BY expression.classQueryThe Query class is the final class of the building process and describes a complete query.classUpdateThe UPDATE expression.classWhereThe WHERE expression.Methods in com.github.eikecochu.sqlbuilder with type parameters of type QueryBuilder Modifier and Type Method Description <T extends QueryBuilder<T>>
voidQueryProcessor. process(T builder)The process method.Methods in com.github.eikecochu.sqlbuilder with parameters of type QueryBuilder Modifier and Type Method Description TConditionValue. all(QueryBuilder<?> parent)Set a subquery to be used as condition with restriction ALLTConditionValue. any(QueryBuilder<?> parent)Set a subquery to be used as condition with restriction ANYWithWith. as(QueryBuilder<?> builder)Use a subquery as the body of this WITH statementWhereWhere. exists(QueryBuilder<?> query)Continues the condition with an EXISTS expressiondefault FromBeforeFrom. from(QueryBuilder<?> subquery)Specify a subquery to select fromdefault FromBeforeFrom. from(QueryBuilder<?> subquery, java.lang.String alias)Specify a subquery to select fromFromFrom. subquery(QueryBuilder<?> subquery)Specify a subquery to select fromFromFrom. subquery(QueryBuilder<?> subquery, java.lang.String alias)Specify a subquery to select fromJoinJoin. subquery(QueryBuilder<?> subquery, java.lang.String name)Add a subquery as join targetConstructors in com.github.eikecochu.sqlbuilder with parameters of type QueryBuilder Constructor Description Exists(QueryBuilder<?> query) -
Uses of QueryBuilder in com.github.eikecochu.sqlbuilder.mssql
Classes in com.github.eikecochu.sqlbuilder.mssql that implement QueryBuilder Modifier and Type Class Description classFetchFetch statement Supported by MS SQL Server, Oracle 12c, PostgreSQLclassOffsetOffset statement Supported by MS SQL Server, Oracle 12c, PostgreSQL -
Uses of QueryBuilder in com.github.eikecochu.sqlbuilder.mysql
Classes in com.github.eikecochu.sqlbuilder.mysql that implement QueryBuilder Modifier and Type Class Description classLimitLimit statement Supported by MySQLclassOffsetOffset statement Supported by MySQL -
Uses of QueryBuilder in com.github.eikecochu.sqlbuilder.oracle
Classes in com.github.eikecochu.sqlbuilder.oracle that implement QueryBuilder Modifier and Type Class Description classConnectByConnectBy statement Supported by Oracle 11gclassStartWithStartWith statement Supported by Oracle 11g
-