Uses of Interface
org.sql.generation.api.grammar.builders.query.QueryBuilder

Packages that use QueryBuilder
org.sql.generation.api.grammar.builders.query Package to hold builders for SQL queries (SELECT -statements). 
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
 

Uses of QueryBuilder in org.sql.generation.api.grammar.builders.query
 

Methods in org.sql.generation.api.grammar.builders.query that return QueryBuilder
 QueryBuilder QueryBuilder.except(CorrespondingSpec correspondingSpec, QueryExpressionBody another)
          Adds EXCEPT <setQuantifier> <correspondingSpec> between current query and the given query.
 QueryBuilder QueryBuilder.except(QueryExpressionBody another)
           Adds EXCEPT <setQuantifier> between current query and the given query.
 QueryBuilder QueryBuilder.except(SetQuantifier setQuantifier, CorrespondingSpec correspondingSpec, QueryExpressionBody another)
           Adds EXCEPT between current query and the given query.
 QueryBuilder QueryBuilder.except(SetQuantifier setQuantifier, QueryExpressionBody another)
           Adds EXCEPT <correspondingSpec> between current query and the given query.
 QueryBuilder QueryBuilder.intersect(CorrespondingSpec correspondingSpec, QueryExpressionBody another)
           Adds INTERSECT <correspondingSpec> between current query and the given query.
 QueryBuilder QueryBuilder.intersect(QueryExpressionBody another)
           Adds INTERSECT between current query and the given query.
 QueryBuilder QueryBuilder.intersect(SetQuantifier setQuantifier, CorrespondingSpec correspondingSpec, QueryExpressionBody another)
          Adds INTERSECT <setQuantifier> <correspondingSpec> between current query and the given query.
 QueryBuilder QueryBuilder.intersect(SetQuantifier setQuantifier, QueryExpressionBody another)
           Adds INTERSECT <setQuantifier> between current query and the given query.
 QueryBuilder QueryBuilder.union(CorrespondingSpec correspondingSpec, QueryExpressionBody another)
           Adds UNION <correspondingSpec> between current query and the given query.
 QueryBuilder QueryBuilder.union(QueryExpressionBody another)
           Adds UNION between current query and the given query.
 QueryBuilder QueryBuilder.union(SetQuantifier setQuantifier, CorrespondingSpec correspondingSpec, QueryExpressionBody another)
          Adds UNION <setQuantifier> <correspondingSpec> between current query and the given query.
 QueryBuilder QueryBuilder.union(SetQuantifier setQuantifier, QueryExpressionBody another)
           Adds UNION <setQuantifier> between current query and the given query.
 

Uses of QueryBuilder in org.sql.generation.api.grammar.factories
 

Methods in org.sql.generation.api.grammar.factories that return QueryBuilder
 QueryBuilder QueryFactory.queryBuilder()
           Creates a builder to build queries with capability for UNION, INTERSECT, and EXCEPT set operations.
 QueryBuilder QueryFactory.queryBuilder(QueryExpressionBody query)
          Creates a builder to build queries with capability for UNION, INTERSECT, and EXCEPT set operations.
 



Copyright © 2010-2011. All Rights Reserved.