Uses of Interface
org.jooq.Query

Packages that use Query
org.jooq   
org.jooq.impl   
 

Uses of Query in org.jooq
 

Subinterfaces of Query in org.jooq
 interface Delete<R extends Record>
          A Query that can delete data in the database.
 interface DeleteConditionStep<R extends Record>
          This type is used for the Delete's DSL API.
 interface DeleteFinalStep<R extends Record>
          This type is used for the Delete's DSL API.
 interface DeleteQuery<R extends Record>
          A query used for deletion of data
 interface DeleteWhereStep<R extends Record>
          This type is used for the Delete's DSL API.
 interface Insert<R extends Record>
          A Query that can insert data in the database.
 interface InsertFinalStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertOnDuplicateSetMoreStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertOnDuplicateStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertQuery<R extends Record>
          A query for data insertion
 interface InsertResultStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface InsertSetMoreStep<R extends Record>
          This type is used for the Insert's alternative DSL API.
 interface InsertValuesStep<R extends Record>
          This type is used for the Insert's DSL API.
 interface Merge<R extends Record>
          A Query that can merge data in the database.
 interface MergeFinalStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeMatchedDeleteStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeMatchedSetMoreStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeMatchedStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeMatchedWhereStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeNotMatchedSetMoreStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeNotMatchedStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeNotMatchedWhereStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface MergeOnConditionStep<R extends Record>
          This type is used for the Merge's DSL API.
 interface ResultQuery<R extends Record>
          A query that can return results.
 interface Select<R extends Record>
          A Query that can provide a Result after execution
 interface SelectConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectConnectByConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectConnectByStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectFinalStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectForUpdateOfStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectForUpdateStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectForUpdateWaitStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectFromStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectGroupByStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectHavingConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectHavingStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectJoinStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectLimitStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectOffsetStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectOnConditionStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectOrderByStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectQuery
          A query for data selection
 interface SelectSelectStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectStartWithStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SelectWhereStep
          This type is used for the Select's DSL API when selecting generic Record types.
 interface SimpleSelectConditionStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectFinalStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectForUpdateOfStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectForUpdateStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectForUpdateWaitStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectLimitStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectOffsetStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectOrderByStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectQuery<R extends Record>
          A simple select query that provides Records from a single table, with no joins allowed.
 interface SimpleSelectWhereStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface StoreQuery<R extends Record>
          A query storing objects to the database.
 interface Truncate<R extends TableRecord<R>>
          A Query that can truncate a table in the database.
 interface Update<R extends Record>
          A Query that can update data in the database.
 interface UpdateConditionStep<R extends Record>
          This type is used for the Update's DSL API.
 interface UpdateFinalStep<R extends Record>
          This type is used for the Update's DSL API.
 interface UpdateQuery<R extends Record>
          A query for data updating
 interface UpdateSetMoreStep<R extends Record>
          This type is used for the Update's DSL API.
 interface UpdateWhereStep<R extends Record>
          This type is used for the Update's DSL API.
 

Methods in org.jooq that return Query
 Query[] ExecuteContext.batchQueries()
          The jOOQ Query objects that are being executed in batch mode, or empty if the query is unknown or if there was no jOOQ Query If a single Query is executed in non-batch mode, this will return an array of length 1, containing that Query
 Query Query.bind(int index, Object value)
          Bind a new value to an indexed parameter
 Query Query.bind(String param, Object value)
          Bind a new value to a named parameter
 Query LoaderError.query()
          The query whose execution failed
 Query ExecuteContext.query()
          The jOOQ Query that is being executed or null if the query is unknown, if it is a batch query, or if there was no jOOQ Query
 Query FactoryOperations.query(String sql)
          Create a new query holding plain SQL.
 Query FactoryOperations.query(String sql, Object... bindings)
          Create a new query holding plain SQL.
 

Methods in org.jooq with parameters of type Query
 Batch FactoryOperations.batch(Query... queries)
          Execute a set of queries in batch mode (without bind values).
 BatchBindStep FactoryOperations.batch(Query query)
          Execute a set of queries in batch mode (with bind values).
 

Method parameters in org.jooq with type arguments of type Query
 Batch FactoryOperations.batch(Collection<? extends Query> queries)
          Execute a set of queries in batch mode (without bind values).
 

Uses of Query in org.jooq.impl
 

Methods in org.jooq.impl that return Query
 Query Factory.query(String sql)
          Create a new query holding plain SQL.
 Query Factory.query(String sql, Object... bindings)
          Create a new query holding plain SQL.
 

Methods in org.jooq.impl with parameters of type Query
 Batch Factory.batch(Query... queries)
          Execute a set of queries in batch mode (without bind values).
 BatchBindStep Factory.batch(Query query)
          Execute a set of queries in batch mode (with bind values).
 

Method parameters in org.jooq.impl with type arguments of type Query
 Batch Factory.batch(Collection<? extends Query> queries)
          Execute a set of queries in batch mode (without bind values).
 



Copyright © 2012. All Rights Reserved.