org.jooq
Interface SimpleSelectQuery<R extends Record>

Type Parameters:
R - The record type being returned by this query
All Superinterfaces:
Adapter, Attachable, ConditionProvider, FieldLike, FieldProvider, LockProvider, OrderProvider, Query, QueryPart, ResultQuery<R>, Select<R>, Serializable, TableLike<R>

public interface SimpleSelectQuery<R extends Record>
extends Select<R>, ConditionProvider, OrderProvider, LockProvider

A simple select query that provides Records from a single table, with no joins allowed.

This is the type of query that is possible with a SimpleSelectQuery:

SELECT * FROM [table] WHERE [conditions] ORDER BY [ordering] LIMIT [limit clause]

Author:
Lukas Eder
See Also:
SelectQuery

Method Summary
 
Methods inherited from interface org.jooq.Select
except, getSelect, intersect, union, unionAll
 
Methods inherited from interface org.jooq.ResultQuery
bind, bind, fetch, fetch, fetch, fetch, fetch, fetch, fetch, fetch, fetch, fetch, fetchAny, fetchArray, fetchArray, fetchArray, fetchArray, fetchArray, fetchArray, fetchArray, fetchArray, fetchArray, fetchArrays, fetchInto, fetchInto, fetchInto, fetchLater, fetchLater, fetchLazy, fetchLazy, fetchMany, fetchMap, fetchMap, fetchMaps, fetchOne, fetchOne, fetchOne, fetchOne, fetchOne, fetchOne, fetchOne, fetchOne, fetchOne, fetchOne, fetchOneArray, fetchOneMap, fetchResultSet, getRecordType, getResult
 
Methods inherited from interface org.jooq.Query
execute, getBindValues, getParam, getParams, getSQL, getSQL
 
Methods inherited from interface org.jooq.Attachable
attach
 
Methods inherited from interface org.jooq.Adapter
internalAPI
 
Methods inherited from interface org.jooq.TableLike
asTable, asTable
 
Methods inherited from interface org.jooq.FieldLike
asField, asField
 
Methods inherited from interface org.jooq.FieldProvider
getField, getField, getField, getFields, getIndex
 
Methods inherited from interface org.jooq.ConditionProvider
addConditions, addConditions, addConditions, addConditions
 
Methods inherited from interface org.jooq.OrderProvider
addLimit, addLimit, addLimit, addLimit, addLimit, addLimit, addOrderBy, addOrderBy, addOrderBy, addOrderBy
 
Methods inherited from interface org.jooq.LockProvider
setForShare, setForUpdate, setForUpdateNoWait, setForUpdateOf, setForUpdateOf, setForUpdateOf, setForUpdateSkipLocked, setForUpdateWait
 



Copyright © 2012. All Rights Reserved.