|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use NamedQueryPart | |
---|---|
org.jooq | |
org.jooq.impl |
Uses of NamedQueryPart in org.jooq |
---|
Subinterfaces of NamedQueryPart in org.jooq | |
---|---|
interface |
AggregateFunction<T>
An aggregate function is a special field that is usually used in a GROUP BY context. |
interface |
CaseConditionStep<T>
The final step in creating a case statement of the type
CASE WHEN x < 1 THEN 'one'
WHEN x >= 2 THEN 'two'
ELSE 'three'
END
|
interface |
CaseWhenStep<V,T>
The final step in creating a case statement of the type
CASE x WHEN 1 THEN 'one'
WHEN 2 THEN 'two'
ELSE 'three'
END
|
interface |
Field<T>
A field used in tables and conditions |
interface |
GroupConcatOrderByStep
MySQL's GROUP_CONCAT function. |
interface |
GroupConcatSeparatorStep
MySQL's GROUP_CONCAT function. |
interface |
NamedTypeProviderQueryPart<T>
Any object providing a type. |
interface |
Package
A container for stored procedures and functions This is only supported in the SQLDialect.ORACLE dialect |
interface |
Param<T>
A named parameter |
interface |
Parameter<T>
A parameter to a stored procedure or function. |
interface |
Routine<T>
A routine is a callable object in your RDBMS. |
interface |
Schema
An entity representing a database schema |
interface |
SortField<T>
A wrapper for a Field and a SortField |
interface |
Table<R extends Record>
A table to be used in queries |
interface |
TableField<R extends Record,T>
A field contained in a table |
interface |
TableOnConditionStep
An intermediate (optional) type for the construction of a JOIN
clause, where the join criteria is added using an ON clause
(with a Condition . |
interface |
Type<R extends Record>
A type (udt or table) that represents any database row |
interface |
UDT<R extends UDTRecord<R>>
UDT definition |
interface |
UDTField<R extends UDTRecord<R>,T>
A field contained in a UDT |
interface |
UpdatableTable<R extends Record>
A common interface for tables whose records can be stored back to the database again. |
interface |
WindowFinalStep<T>
This type is used for the window function DSL API. |
interface |
WindowOrderByStep<T>
This type is used for the window function DSL API. |
interface |
WindowPartitionByStep<T>
This type is used for the window function DSL API. |
interface |
WindowRowsStep<T>
This type is used for the window function DSL API. |
Uses of NamedQueryPart in org.jooq.impl |
---|
Classes in org.jooq.impl that implement NamedQueryPart | |
---|---|
class |
AbstractRoutine<T>
A common base class for stored procedures This type is for JOOQ INTERNAL USE only. |
class |
CustomField<T>
A base class for custom Field implementations in client code. |
class |
CustomTable<R extends TableRecord<R>>
A base class for custom Table implementations in client code. |
class |
PackageImpl
A default implementation for packages (containers of stored procedures and functions) Currently, this is only supported for the SQLDialect.ORACLE dialect. |
class |
SchemaImpl
A common base class for database schemata This type is for JOOQ INTERNAL USE only. |
class |
TableImpl<R extends Record>
A common base type for tables This type is for JOOQ INTERNAL USE only. |
class |
UDTImpl<R extends UDTRecord<R>>
A common base type for UDT's This type is for JOOQ INTERNAL USE only. |
class |
UpdatableTableImpl<R extends Record>
A table implementation for a table holding a primary key This type is for JOOQ INTERNAL USE only. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |