Uses of Interface
org.sql.generation.api.grammar.query.QueryExpression

Packages that use QueryExpression
org.sql.generation.api.grammar.booleans This package provides interfaces for syntax elements of boolean expressions in SQL language. 
org.sql.generation.api.grammar.factories This package provides factories to create various builders and SQL syntax elements. 
org.sql.generation.api.grammar.modification This package contains syntax elements relevant to SQL modification clauses (INSERT INTO, DELETE FROM, and UPDATE). 
org.sql.generation.api.grammar.query This package and its sub-package contain elements related to SQL queries (SELECT statements). 
 

Uses of QueryExpression in org.sql.generation.api.grammar.booleans
 

Methods in org.sql.generation.api.grammar.booleans that return QueryExpression
 QueryExpression UniquePredicate.getValueExpression()
          Gets the query on which UNIQUE operates on.
 QueryExpression ExistsPredicate.getValueExpression()
          Returns the query on which EXISTS operates on.
 

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

Methods in org.sql.generation.api.grammar.factories that return QueryExpression
 QueryExpression QueryFactory.createQuery(QueryExpressionBody body)
          Creates new query, which has the specified body as an actual query.
 

Methods in org.sql.generation.api.grammar.factories with parameters of type QueryExpression
 ColumnSourceByQuery ModificationFactory.columnSourceByQuery(ColumnNameList columnNames, QueryExpression query)
          Creates a column source, which uses specified target table column names and query as source columns in INSERT INTO statement.
 ColumnSourceByQuery ModificationFactory.columnSourceByQuery(QueryExpression query)
           Creates a column source, which uses a query as a source for columns in INSERT INTO statement.
 ExistsPredicate BooleanFactory.exists(QueryExpression query)
          Creates new ExistsPredicate.
 TableReferenceByExpression TableReferenceFactory.table(QueryExpression query)
           Creates a new table reference, which will use the values returned by query as if they were values of the table.
 TableReferenceByExpression TableReferenceFactory.table(QueryExpression query, TableAlias alias)
          Creates a new table reference, which will use the values returned by query as if they were values of the table.
 UniquePredicate BooleanFactory.unique(QueryExpression query)
          Creates new UniquePredicate.
 

Uses of QueryExpression in org.sql.generation.api.grammar.modification
 

Methods in org.sql.generation.api.grammar.modification that return QueryExpression
 QueryExpression ColumnSourceByQuery.getQuery()
          Returns the query to use as column source.
 

Uses of QueryExpression in org.sql.generation.api.grammar.query
 

Methods in org.sql.generation.api.grammar.query that return QueryExpression
 QueryExpression TableReferenceByExpression.getQuery()
          Returns the query to use.
 



Copyright © 2010. All Rights Reserved.