A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _

A

abbreviate(String, int) - Static method in class org.jooq.tools.StringUtils
Abbreviates a String using ellipses.
abbreviate(String, int, int) - Static method in class org.jooq.tools.StringUtils
Abbreviates a String using ellipses.
abs() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
abs(T) - Static method in class org.jooq.impl.Factory
Get the absolute value of a numeric field: abs(field)
abs(Field<T>) - Static method in class org.jooq.impl.Factory
Get the absolute value of a numeric field: abs(field) This renders the same on all dialects: abs([field])
abs() - Method in class org.jooq.types.DayToSecond
 
abs() - Method in interface org.jooq.types.Interval
Get the absolute value of the interval (set its sign to positive)
abs() - Method in class org.jooq.types.YearToMonth
 
AbstractDataType<T> - Class in org.jooq.impl
A common base class for data types.
AbstractDataType(SQLDialect, SQLDataType<T>, Class<? extends T>, String) - Constructor for class org.jooq.impl.AbstractDataType
 
AbstractDataType(SQLDialect, SQLDataType<T>, Class<? extends T>, String, String) - Constructor for class org.jooq.impl.AbstractDataType
 
AbstractDataType(SQLDialect, SQLDataType<T>, Class<? extends T>, String, boolean) - Constructor for class org.jooq.impl.AbstractDataType
 
AbstractDataType(SQLDialect, SQLDataType<T>, Class<? extends T>, String, String, boolean) - Constructor for class org.jooq.impl.AbstractDataType
 
AbstractKeys - Class in org.jooq.impl
A base class for generated static references This type is for JOOQ INTERNAL USE only.
AbstractKeys() - Constructor for class org.jooq.impl.AbstractKeys
 
AbstractRoutine<T> - Class in org.jooq.impl
A common base class for stored procedures This type is for JOOQ INTERNAL USE only.
AbstractRoutine(SQLDialect, String, Schema) - Constructor for class org.jooq.impl.AbstractRoutine
Deprecated. - 2.1.0 [#625] - Regenerate your schema
AbstractRoutine(SQLDialect, String, Schema, Package) - Constructor for class org.jooq.impl.AbstractRoutine
Deprecated. - 2.1.0 [#625] - Regenerate your schema
AbstractRoutine(SQLDialect, String, Schema, DataType<T>) - Constructor for class org.jooq.impl.AbstractRoutine
Deprecated. - 2.1.0 [#625] - Regenerate your schema
AbstractRoutine(SQLDialect, String, Schema, Package, DataType<T>) - Constructor for class org.jooq.impl.AbstractRoutine
Deprecated. - 2.1.0 [#625] - Regenerate your schema
AbstractRoutine(String, Schema) - Constructor for class org.jooq.impl.AbstractRoutine
 
AbstractRoutine(String, Schema, Package) - Constructor for class org.jooq.impl.AbstractRoutine
 
AbstractRoutine(String, Schema, DataType<T>) - Constructor for class org.jooq.impl.AbstractRoutine
 
AbstractRoutine(String, Schema, Package, DataType<T>) - Constructor for class org.jooq.impl.AbstractRoutine
 
ACLITEM - Static variable in class org.jooq.util.postgres.PostgresDataType
 
acos() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
acos(Number) - Static method in class org.jooq.impl.Factory
Get the arc cosine(field) function
acos(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the arc cosine(field) function This renders the acos function where available: acos([field])
Adapter - Interface in org.jooq
A type that can dynamically implement another interface.
add(Number) - Method in interface org.jooq.Field
An arithmetic expression adding this to value.
add(Field<?>) - Method in interface org.jooq.Field
An arithmetic expression to add value to this.
add(Field<?>) - Method in class org.jooq.impl.CustomField
 
add(String, String) - Method in class org.jooq.SchemaMapping
Deprecated. Add schemata to this mapping
add(String, Schema) - Method in class org.jooq.SchemaMapping
Deprecated. Add schemata to this mapping
add(Schema, Schema) - Method in class org.jooq.SchemaMapping
Deprecated. Add schemata to this mapping
add(Schema, String) - Method in class org.jooq.SchemaMapping
Deprecated. Add schemata to this mapping
add(Table<?>, Table<?>) - Method in class org.jooq.SchemaMapping
Deprecated. Add tables to this mapping
add(Table<?>, String) - Method in class org.jooq.SchemaMapping
Deprecated. Add tables to this mapping
addConditions(Condition...) - Method in interface org.jooq.ConditionProvider
Adds new conditions to the query, connecting them to existing conditions with Operator.AND
addConditions(Collection<Condition>) - Method in interface org.jooq.ConditionProvider
Adds new conditions to the query, connecting them to existing conditions with Operator.AND
addConditions(Operator, Condition...) - Method in interface org.jooq.ConditionProvider
Adds new conditions to the query, connecting them to existing conditions with the provided operator
addConditions(Operator, Collection<Condition>) - Method in interface org.jooq.ConditionProvider
Adds new conditions to the query, connecting them to existing conditions with the provided operator
addConnectBy(Condition) - Method in interface org.jooq.SelectQuery
Add an Oracle-specific CONNECT BY clause to the query
addConnectByNoCycle(Condition) - Method in interface org.jooq.SelectQuery
Add an Oracle-specific CONNECT BY NOCYCLE clause to the query
addFrom(TableLike<?>...) - Method in interface org.jooq.SelectQuery
Add tables to the table product
addFrom(Collection<? extends TableLike<?>>) - Method in interface org.jooq.SelectQuery
Add tables to the table product
addGroupBy(Field<?>...) - Method in interface org.jooq.SelectQuery
Adds grouping fields
addGroupBy(Collection<? extends Field<?>>) - Method in interface org.jooq.SelectQuery
Adds grouping fields
addHaving(Condition...) - Method in interface org.jooq.SelectQuery
Adds new conditions to the having clause of the query, connecting it to existing conditions with the and operator.
addHaving(Collection<Condition>) - Method in interface org.jooq.SelectQuery
Adds new conditions to the having clause of the query, connecting it to existing conditions with the and operator.
addHaving(Operator, Condition...) - Method in interface org.jooq.SelectQuery
Adds new conditions to the having clause of query, connecting them to existing conditions with the provided operator
addHaving(Operator, Collection<Condition>) - Method in interface org.jooq.SelectQuery
Adds new conditions to the having clause of query, connecting them to existing conditions with the provided operator
addHint(String) - Method in interface org.jooq.SelectQuery
Add an Oracle-style hint to the select clause Example: Factory create = new Factory(); create.select(field1, field2) .hint("/*+ALL_ROWS*/") .from(table1) .execute();
addInOutParameter(Parameter<?>) - Method in class org.jooq.impl.AbstractRoutine
 
addInParameter(Parameter<?>) - Method in class org.jooq.impl.AbstractRoutine
 
addJoin(TableLike<?>, Condition...) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table using a condition
addJoin(TableLike<?>, JoinType, Condition...) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table using a condition
addJoinOnKey(TableLike<?>, JoinType) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table using a foreign key
addJoinOnKey(TableLike<?>, JoinType, TableField<?, ?>...) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table using a foreign key
addJoinOnKey(TableLike<?>, JoinType, ForeignKey<?, ?>) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table using a foreign key
addJoinUsing(TableLike<?>, Collection<? extends Field<?>>) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table with a USING clause If this is not supported by your RDBMS, then jOOQ will try to simulate this behaviour using the information provided in this query.
addJoinUsing(TableLike<?>, JoinType, Collection<? extends Field<?>>) - Method in interface org.jooq.SelectQuery
Joins the existing table product to a new table with a USING clause If this is not supported by your RDBMS, then jOOQ will try to simulate this behaviour using the information provided in this query.
addLimit(int) - Method in interface org.jooq.OrderProvider
Limit the results of this select This is the same as calling OrderProvider.addLimit(int, int) with offset = 0
addLimit(Param<Integer>) - Method in interface org.jooq.OrderProvider
Limit the results of this select using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
addLimit(int, int) - Method in interface org.jooq.OrderProvider
Limit the results of this select Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
addLimit(Param<Integer>, int) - Method in interface org.jooq.OrderProvider
Limit the results of this select Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
addLimit(int, Param<Integer>) - Method in interface org.jooq.OrderProvider
Limit the results of this select using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
addLimit(Param<Integer>, Param<Integer>) - Method in interface org.jooq.OrderProvider
Limit the results of this select using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
addMapping(String, Class<?>) - Method in class org.jooq.impl.SchemaImpl
 
addOrderBy(Field<?>...) - Method in interface org.jooq.OrderProvider
Adds ordering fields, ordering by the default sort order
addOrderBy(SortField<?>...) - Method in interface org.jooq.OrderProvider
Adds ordering fields
addOrderBy(Collection<SortField<?>>) - Method in interface org.jooq.OrderProvider
Adds ordering fields
addOrderBy(int...) - Method in interface org.jooq.OrderProvider
Adds ordering fields Indexes start at 1 in SQL!
addOutParameter(Parameter<?>) - Method in class org.jooq.impl.AbstractRoutine
 
addRecord(R) - Method in interface org.jooq.InsertQuery
Short for calling newRecord(); setRecord(record);
addSelect(Field<?>...) - Method in interface org.jooq.SelectQuery
Add a list of select fields
addSelect(Collection<? extends Field<?>>) - Method in interface org.jooq.SelectQuery
Add a list of select fields
addValue(Field<T>, T) - Method in interface org.jooq.StoreQuery
Add a value to the store statement
addValue(Field<T>, Field<T>) - Method in interface org.jooq.StoreQuery
Add a value to the store statement
addValueAsArray(Field<A>, T...) - Method in interface org.jooq.StoreQuery
Add a value to the store statement
addValueAsArray(Field<A>, List<T>) - Method in interface org.jooq.StoreQuery
Add a value to the store statement
addValueForUpdate(Field<T>, T) - Method in interface org.jooq.InsertQuery
Add a value to the ON DUPLICATE KEY UPDATE clause of this INSERT statement, where this is supported.
addValueForUpdate(Field<T>, Field<T>) - Method in interface org.jooq.InsertQuery
Add a value to the ON DUPLICATE KEY UPDATE clause of this INSERT statement, where this is supported.
addValues(Map<? extends Field<?>, ?>) - Method in interface org.jooq.StoreQuery
Add multiple values to the store statement.
addValuesForUpdate(Map<? extends Field<?>, ?>) - Method in interface org.jooq.InsertQuery
Add multiple values to the ON DUPLICATE KEY UPDATE clause of this INSERT statement, where this is supported.
aesDecrypt(String, String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific AES_DECRYPT() function
aesDecrypt(Field<String>, Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific AES_DECRYPT() function
aesEncrypt(String, String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific AES_ENCRYPT() function
aesEncrypt(Field<String>, Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific AES_ENCRYPT() function
AggregateFunction<T> - Interface in org.jooq
An aggregate function is a special field that is usually used in a GROUP BY context.
AliasProvider<Z extends AliasProvider<Z>> - Interface in org.jooq
A QueryPart that can create an aliased QueryPart of itself
and(Condition) - Method in interface org.jooq.Condition
Combine this condition with another one using the Operator.AND operator.
and(String) - Method in interface org.jooq.Condition
Combine this condition with another one using the Operator.AND operator.
and(String, Object...) - Method in interface org.jooq.Condition
Combine this condition with another one using the Operator.AND operator.
and(Condition) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator
and(String) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
and(String, Object...) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
and(Condition) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator.
and(String) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator.
and(String, Object...) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator.
and(Condition) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String, Object...) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(Condition) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String, Object...) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(Condition) - Method in interface org.jooq.SelectConnectByConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String) - Method in interface org.jooq.SelectConnectByConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String, Object...) - Method in interface org.jooq.SelectConnectByConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(Condition) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String, Object...) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(Condition) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String, Object...) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(Condition) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(String, Object...) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator and proceed to the next step.
and(Condition) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator.
and(String) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator.
and(String, Object...) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator.
and(Condition) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator
and(String) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
and(String, Object...) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with another one using the Operator.AND operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
andCurrentRow() - Method in interface org.jooq.WindowRowsAndStep
Add a ...
andExists(Select<?>) - Method in interface org.jooq.Condition
Combine this condition with an EXISTS clause using the Operator.AND operator.
andExists(Select<?>) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator
andExists(Select<?>) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator.
andExists(Select<?>) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator and proceed to the next step.
andExists(Select<?>) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator and proceed to the next step.
andExists(Select<?>) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator and proceed to the next step.
andExists(Select<?>) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator and proceed to the next step.
andExists(Select<?>) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator and proceed to the next step.
andExists(Select<?>) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator.
andExists(Select<?>) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.AND operator
andFollowing(int) - Method in interface org.jooq.WindowRowsAndStep
Add a ...
andNot(Condition) - Method in interface org.jooq.Condition
Combine this condition with a negated other one using the Operator.AND operator.
andNot(Condition) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator
andNot(Condition) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator.
andNot(Condition) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator and proceed to the next step.
andNot(Condition) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator and proceed to the next step.
andNot(Condition) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator and proceed to the next step.
andNot(Condition) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator and proceed to the next step.
andNot(Condition) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator and proceed to the next step.
andNot(Condition) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator.
andNot(Condition) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.AND operator
andNotExists(Select<?>) - Method in interface org.jooq.Condition
Combine this condition with a NOT EXIST clause using the Operator.AND operator.
andNotExists(Select<?>) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator
andNotExists(Select<?>) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator.
andNotExists(Select<?>) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator and proceed to the next step.
andNotExists(Select<?>) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator and proceed to the next step.
andNotExists(Select<?>) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator and proceed to the next step.
andNotExists(Select<?>) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator and proceed to the next step.
andNotExists(Select<?>) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator and proceed to the next step.
andNotExists(Select<?>) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator.
andNotExists(Select<?>) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.AND operator
andPreceding(int) - Method in interface org.jooq.WindowRowsAndStep
Add a ...
andUnboundedFollowing() - Method in interface org.jooq.WindowRowsAndStep
Add a ...
andUnboundedPreceding() - Method in interface org.jooq.WindowRowsAndStep
Add a ...
ANSIDATE - Static variable in class org.jooq.util.ingres.IngresDataType
 
ArrayRecord<E> - Interface in org.jooq
A "record" that encapsulates an Oracle-style ARRAY (or VARRAY), additionally providing some convenience methods
ArrayRecordImpl<T> - Class in org.jooq.impl
A common base class for Oracle ARRAY types This type is for JOOQ INTERNAL USE only.
ArrayRecordImpl(String, DataType<T>, Configuration) - Constructor for class org.jooq.impl.ArrayRecordImpl
Deprecated. - 2.0.5 [#1179] - Please regenerate your schema and use ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType, Configuration) instead
ArrayRecordImpl(String, DataType<T>) - Constructor for class org.jooq.impl.ArrayRecordImpl
Deprecated. - 2.0.5 [#1179] - Please regenerate your schema and use ArrayRecordImpl.ArrayRecordImpl(Schema, String, DataType) instead
ArrayRecordImpl(Schema, String, DataType<T>, Configuration) - Constructor for class org.jooq.impl.ArrayRecordImpl
Create an empty array record
ArrayRecordImpl(Schema, String, DataType<T>) - Constructor for class org.jooq.impl.ArrayRecordImpl
Create an empty array record
as(String) - Method in interface org.jooq.AliasProvider
Get an aliased QueryPart.
as(String) - Method in interface org.jooq.Field
Create an alias for this field
as(String) - Method in class org.jooq.impl.CustomField
 
as(String) - Method in class org.jooq.impl.TableImpl
Subclasses may override this method to provide custom aliasing implementations Get an aliased QueryPart.
as(Class<P>) - Method in class org.jooq.tools.reflect.Reflect
Create a proxy for the wrapped object allowing to typesafely invoke methods on it using a custom interface
asArrayDataType(Class<A>) - Method in interface org.jooq.DataType
Retrieve the data type for an Oracle-style ARRAY of this data type
asArrayDataType(Class<A>) - Method in class org.jooq.impl.AbstractDataType
 
asc() - Method in interface org.jooq.Field
Create an ascending sort field from this field
ascii() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
ascii(String) - Static method in class org.jooq.impl.Factory
Get the ascii(field) function
ascii(Field<String>) - Static method in class org.jooq.impl.Factory
Get the ascii(field) function This renders the ascii function: ascii([field])
asConvertedDataType(Converter<? super T, U>) - Method in interface org.jooq.DataType
Retrieve the data type for a given converter
asConvertedDataType(Converter<? super T, U>) - Method in class org.jooq.impl.AbstractDataType
 
ASEDataType<T> - Class in org.jooq.util.ase
Supported data types for the SQLDialect.ASE dialect
ASEFactory - Class in org.jooq.util.ase
A SQLDialect.ASE specific factory
ASEFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.ase.ASEFactory
Deprecated. - 2.0.5 - Use ASEFactory.ASEFactory(Connection, Settings) instead
ASEFactory(Connection, Settings) - Constructor for class org.jooq.util.ase.ASEFactory
Create a factory with connection and a settings configured
ASEFactory(Connection) - Constructor for class org.jooq.util.ase.ASEFactory
Create a factory with connection
asEnumDataType(Class<E>) - Method in interface org.jooq.DataType
Retrieve the data type for a given enum data type
asEnumDataType(Class<E>) - Method in class org.jooq.impl.AbstractDataType
 
asField() - Method in interface org.jooq.FieldLike
The underlying field representation of this object This method is useful for things like SELECT y.*, (SELECT a FROM x) FROM y
asField(String) - Method in interface org.jooq.FieldLike
The underlying field representation of this object This method is useful for things like SELECT y.*, (SELECT a FROM x) [alias] FROM y
asField() - Method in class org.jooq.impl.AbstractRoutine
 
asField(String) - Method in class org.jooq.impl.AbstractRoutine
 
asin() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
asin(Number) - Static method in class org.jooq.impl.Factory
Get the arc sine(field) function
asin(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the arc sine(field) function This renders the asin function where available: asin([field])
asMasterDataType(Class<M>) - Method in interface org.jooq.DataType
Retrieve the data type for a given master data type
asMasterDataType(Class<M>) - Method in class org.jooq.impl.AbstractDataType
 
asTable() - Method in interface org.jooq.TableLike
The underlying table representation of this object This method is useful for things like SELECT * FROM (SELECT * FROM x WHERE x.a = '1') WHERE ...
asTable(String) - Method in interface org.jooq.TableLike
The underlying aliased table representation of this object This method is useful for things like SELECT * FROM (SELECT * FROM x WHERE x.a = '1') [alias] WHERE ...
atan() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
atan(Number) - Static method in class org.jooq.impl.Factory
Get the arc tangent(field) function
atan(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the arc tangent(field) function This renders the atan function where available: atan([field])
atan2(Number) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
atan2(Field<? extends Number>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
atan2(Number, Number) - Static method in class org.jooq.impl.Factory
Get the atan2(field, y) function
atan2(Number, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the atan2(field, y) function
atan2(Field<? extends Number>, Number) - Static method in class org.jooq.impl.Factory
Get the atan2(field, y) function
atan2(Field<? extends Number>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the atan2(field, y) function This renders the atan2 or atn2 function where available: atan2([x], [y]) or atn2([x], [y])
attach(Configuration) - Method in interface org.jooq.Attachable
Attach this object to a new Configuration
attach(Attachable...) - Method in interface org.jooq.FactoryOperations
Attach this Factory to some attachables
attach(Collection<Attachable>) - Method in interface org.jooq.FactoryOperations
Attach this Factory to some attachables
attach(Configuration) - Method in class org.jooq.impl.AbstractRoutine
 
attach(Configuration) - Method in class org.jooq.impl.CustomCondition
 
attach(Configuration) - Method in class org.jooq.impl.CustomField
Subclasses may further override this method
By default, nothing is done on an attachment event.
attach(Configuration) - Method in class org.jooq.impl.CustomTable
Subclasses may further override this method
By default, nothing is done on an attachment event.
attach(Attachable...) - Method in class org.jooq.impl.Factory
Attach this Factory to some attachables
attach(Collection<Attachable>) - Method in class org.jooq.impl.Factory
Attach this Factory to some attachables
Attachable - Interface in org.jooq
An object in jOOQ that can have an underlying Configuration attached or detached.
AttachableInternal - Interface in org.jooq
Base functionality declaration for all Attachables This interface is for JOOQ INTERNAL USE only.
avg() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
avg(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the average over a numeric field: avg(field)
avgDistinct(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the average over a numeric field: avg(distinct field)
avgOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.

B

Batch - Interface in org.jooq
A wrapper for a JDBC batch operation.
batch(Query...) - Method in interface org.jooq.FactoryOperations
Execute a set of queries in batch mode (without bind values).
batch(Collection<? extends Query>) - Method in interface org.jooq.FactoryOperations
Execute a set of queries in batch mode (without bind values).
batch(Query) - Method in interface org.jooq.FactoryOperations
Execute a set of queries in batch mode (with bind values).
batch(Query...) - Method in class org.jooq.impl.Factory
Execute a set of queries in batch mode (without bind values).
batch(Collection<? extends Query>) - Method in class org.jooq.impl.Factory
Execute a set of queries in batch mode (without bind values).
batch(Query) - Method in class org.jooq.impl.Factory
Execute a set of queries in batch mode (with bind values).
BatchBindStep - Interface in org.jooq
This type is used for the Batch's DSL API.
batchQueries() - Method in interface org.jooq.ExecuteContext
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
batchSQL() - Method in interface org.jooq.ExecuteContext
The generated SQL statements that are being executed in batch mode, or empty if the query is unknown or if there was no SQL statement If a single Query is executed in non-batch mode, this will return an array of length 1, containing that Query
between(T, T) - Method in interface org.jooq.Field
Create a condition to check this field against some bounds SQL: this between minValue and maxValue
between(Field<T>, Field<T>) - Method in interface org.jooq.Field
Create a condition to check this field against some bounds SQL: this between minValue and maxValue
BFILE - Static variable in class org.jooq.util.oracle.OracleDataType
 
BIGDATETIME - Static variable in class org.jooq.util.ase.ASEDataType
 
BIGINT - Static variable in class org.jooq.impl.SQLDataType
The Types.BIGINT type
BIGINT - Static variable in class org.jooq.util.ase.ASEDataType
 
BIGINT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
BIGINT - Static variable in class org.jooq.util.db2.DB2DataType
 
BIGINT - Static variable in class org.jooq.util.derby.DerbyDataType
 
BIGINT - Static variable in class org.jooq.util.h2.H2DataType
 
BIGINT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
BIGINT - Static variable in class org.jooq.util.ingres.IngresDataType
 
BIGINT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BIGINT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
BIGINT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
BIGINT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
BIGINT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
BIGINTUNSIGNED - Static variable in class org.jooq.impl.SQLDataType
The unsigned Types.BIGINT type
BIGINTUNSIGNED - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BIGSERIAL - Static variable in class org.jooq.util.postgres.PostgresDataType
 
BIGTIME - Static variable in class org.jooq.util.ase.ASEDataType
 
BINARY - Static variable in class org.jooq.impl.SQLDataType
The Types.BINARY type
BINARY - Static variable in class org.jooq.util.ase.ASEDataType
 
BINARY - Static variable in class org.jooq.util.h2.H2DataType
 
BINARY - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
BINARY - Static variable in class org.jooq.util.ingres.IngresDataType
 
BINARY - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BINARY - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
BINARY - Static variable in class org.jooq.util.sybase.SybaseDataType
 
BINARY_DOUBLE - Static variable in class org.jooq.util.oracle.OracleDataType
 
BINARY_FLOAT - Static variable in class org.jooq.util.oracle.OracleDataType
 
BINARY_INTEGER - Static variable in class org.jooq.util.oracle.OracleDataType
 
BINARYLARGEOBJECT - Static variable in class org.jooq.util.derby.DerbyDataType
 
BINARYLARGEOBJECT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
BINARYLARGEOBJECT - Static variable in class org.jooq.util.ingres.IngresDataType
 
bind(Object...) - Method in interface org.jooq.BatchBindStep
Set bind values on the batch statement
bind(QueryPart) - Method in interface org.jooq.BindContext
Bind values from a QueryPart.
bind(Collection<? extends QueryPart>) - Method in interface org.jooq.BindContext
Bind values from several QueryPart's.
bind(QueryPart[]) - Method in interface org.jooq.BindContext
Bind values from several QueryPart's.
bind(BindContext) - Method in class org.jooq.impl.AbstractRoutine
 
bind(BindContext) - Method in class org.jooq.impl.CustomCondition
Subclasses must implement this method
Bind all parameters of this QueryPart to a PreparedStatement This method is for JOOQ INTERNAL USE only.
bind(BindContext) - Method in class org.jooq.impl.CustomField
Subclasses must implement this method
Bind all parameters of this QueryPart to a PreparedStatement This method is for JOOQ INTERNAL USE only.
bind(QueryPart, PreparedStatement) - Method in class org.jooq.impl.Factory
Get a new BindContext for the context of this factory This will return an initialised bind context as such: Context.declareFields() == false Context.declareTables() == false RenderContext for JOOQ INTERNAL USE only.
bind(BindContext) - Method in class org.jooq.impl.PackageImpl
 
bind(BindContext) - Method in class org.jooq.impl.SchemaImpl
 
bind(BindContext) - Method in class org.jooq.impl.TableImpl
 
bind(BindContext) - Method in class org.jooq.impl.UDTImpl
 
bind(String, Object) - Method in interface org.jooq.Query
Bind a new value to a named parameter
bind(int, Object) - Method in interface org.jooq.Query
Bind a new value to an indexed parameter
bind(BindContext) - Method in interface org.jooq.QueryPartInternal
Bind all parameters of this QueryPart to a PreparedStatement This method is for JOOQ INTERNAL USE only.
bind(String, Object) - Method in interface org.jooq.ResultQuery
Bind a new value to a named parameter
bind(int, Object) - Method in interface org.jooq.ResultQuery
Bind a new value to an indexed parameter
BindContext - Interface in org.jooq
The bind context is used for binding QueryPart's and their contained values to a PreparedStatement's bind variables.
bindContext(PreparedStatement) - Method in class org.jooq.impl.Factory
Get a new BindContext for the context of this factory This will return an initialised bind context as such: Context.declareFields() == false Context.declareTables() == false RenderContext for JOOQ INTERNAL USE only.
bindEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after binding variables to the PreparedStatement Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
bindEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
bindEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
bindStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before binding variables to the PreparedStatement Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
bindStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
bindStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
bindValue(Object, Class<?>) - Method in interface org.jooq.BindContext
Bind a value using a specific type.
bindValues(Object...) - Method in interface org.jooq.BindContext
Bind several values.
BIT - Static variable in class org.jooq.impl.SQLDataType
The Types.BIT type
BIT - Static variable in class org.jooq.util.ase.ASEDataType
 
BIT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
BIT - Static variable in class org.jooq.util.h2.H2DataType
 
BIT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
BIT - Static variable in class org.jooq.util.ingres.IngresDataType
 
BIT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BIT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
BIT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
BIT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
bitAnd(T, T) - Static method in class org.jooq.impl.Factory
The bitwise and operator.
bitAnd(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise and operator.
bitAnd(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise and operator.
bitAnd(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise and operator.
bitCount(Number) - Static method in class org.jooq.impl.Factory
The MySQL BIT_COUNT(field) function, counting the number of bits that are set in this number.
bitCount(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
The MySQL BIT_COUNT(field) function, counting the number of bits that are set in this number.
bitLength() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
bitLength(String) - Static method in class org.jooq.impl.Factory
Get the bit_length(field) function This translates into any dialect
bitLength(Field<String>) - Static method in class org.jooq.impl.Factory
Get the bit_length(field) function This translates into any dialect
bitNand(T, T) - Static method in class org.jooq.impl.Factory
The bitwise not and operator.
bitNand(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not and operator.
bitNand(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise not and operator.
bitNand(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not and operator.
bitNor(T, T) - Static method in class org.jooq.impl.Factory
The bitwise not or operator.
bitNor(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not or operator.
bitNor(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise not or operator.
bitNor(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not or operator.
bitNot(T) - Static method in class org.jooq.impl.Factory
The bitwise not operator.
bitNot(Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not operator.
bitOr(T, T) - Static method in class org.jooq.impl.Factory
The bitwise or operator.
bitOr(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise or operator.
bitOr(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise or operator.
bitOr(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise or operator.
BITVARYING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
BITVARYING - Static variable in class org.jooq.util.postgres.PostgresDataType
 
bitXNor(T, T) - Static method in class org.jooq.impl.Factory
The bitwise not xor operator.
bitXNor(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not xor operator.
bitXNor(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise not xor operator.
bitXNor(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise not xor operator.
bitXor(T, T) - Static method in class org.jooq.impl.Factory
The bitwise xor operator.
bitXor(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise xor operator.
bitXor(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise xor operator.
bitXor(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise xor operator.
BLOB - Static variable in class org.jooq.impl.SQLDataType
The Types.BLOB type
BLOB - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
BLOB - Static variable in class org.jooq.util.db2.DB2DataType
 
BLOB - Static variable in class org.jooq.util.derby.DerbyDataType
 
BLOB - Static variable in class org.jooq.util.h2.H2DataType
 
BLOB - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
BLOB - Static variable in class org.jooq.util.ingres.IngresDataType
 
BLOB - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BLOB - Static variable in class org.jooq.util.oracle.OracleDataType
 
BLOB - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
BOOL - Static variable in class org.jooq.util.h2.H2DataType
 
BOOL - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BOOL - Static variable in class org.jooq.util.postgres.PostgresDataType
 
BOOLEAN - Static variable in class org.jooq.impl.SQLDataType
The Types.BOOLEAN type
BOOLEAN - Static variable in class org.jooq.util.derby.DerbyDataType
 
BOOLEAN - Static variable in class org.jooq.util.h2.H2DataType
 
BOOLEAN - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
BOOLEAN - Static variable in class org.jooq.util.ingres.IngresDataType
 
BOOLEAN - Static variable in class org.jooq.util.mysql.MySQLDataType
 
BOOLEAN - Static variable in class org.jooq.util.oracle.OracleDataType
 
BOOLEAN - Static variable in class org.jooq.util.postgres.PostgresDataType
 
BOOLEAN - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
BPCHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
BYTE - Static variable in class org.jooq.util.ingres.IngresDataType
 
BYTEA - Static variable in class org.jooq.util.h2.H2DataType
 
BYTEA - Static variable in class org.jooq.util.postgres.PostgresDataType
 
byteValue() - Method in interface org.jooq.types.Interval
 

C

C - Static variable in class org.jooq.util.ingres.IngresDataType
 
call(String) - Method in class org.jooq.tools.reflect.Reflect
Call a method by its name.
call(String, Object...) - Method in class org.jooq.tools.reflect.Reflect
Call a method by its name.
Case - Interface in org.jooq
The SQL case statement.
CaseConditionStep<T> - Interface in org.jooq
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
CaseValueStep<V> - Interface in org.jooq
An intermediary step in creating a case statement of the type CASE x WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'three' END
CaseWhenStep<V,T> - Interface in org.jooq
The final step in creating a case statement of the type CASE x WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'three' END
cast(Field<Z>) - Method in interface org.jooq.Field
Cast this field to the type of another field.
cast(DataType<Z>) - Method in interface org.jooq.Field
Cast this field to a dialect-specific data type.
cast(Class<? extends Z>) - Method in interface org.jooq.Field
Cast this field to another type The actual cast may not be accurate as the DataType has to be "guessed" from the jOOQ-configured data types.
cast(Object, Field<T>) - Static method in class org.jooq.impl.Factory
Cast a value to the type of another field.
cast(Object, Class<? extends T>) - Static method in class org.jooq.impl.Factory
Cast a value to another type
cast(Object, DataType<T>) - Static method in class org.jooq.impl.Factory
Cast a value to another type
cast() - Method in interface org.jooq.RenderContext
Whether casting must be applied.
castMode() - Method in interface org.jooq.RenderContext
The currently applied cast mode for bind values
castMode(RenderContext.CastMode) - Method in interface org.jooq.RenderContext
Set the new cast mode for RenderContext.castMode()
castModeSome(SQLDialect...) - Method in interface org.jooq.RenderContext
Set the new cast mode to RenderContext.CastMode.SOME for a list of dialects
castNull(Field<T>) - Static method in class org.jooq.impl.Factory
Cast null to the type of another field.
castNull(DataType<T>) - Static method in class org.jooq.impl.Factory
Cast null to a type
castNull(Class<? extends T>) - Static method in class org.jooq.impl.Factory
Cast null to a type
ceil() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
ceil(T) - Static method in class org.jooq.impl.Factory
Get the smallest integer value not less than [this]
ceil(Field<T>) - Static method in class org.jooq.impl.Factory
Get the smallest integer value not less than [field] This renders the ceil or ceiling function where available: ceil([field]) or ceiling([field]) ... or simulates it elsewhere using round: round([field] + 0.499999999999999)
CHAR - Static variable in class org.jooq.impl.SQLDataType
The Types.CHAR type
CHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
CHAR - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
CHAR - Static variable in class org.jooq.util.db2.DB2DataType
 
CHAR - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHAR - Static variable in class org.jooq.util.h2.H2DataType
 
CHAR - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
CHAR - Static variable in class org.jooq.util.ingres.IngresDataType
 
CHAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
CHAR - Static variable in class org.jooq.util.oracle.OracleDataType
 
CHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
CHAR - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
CHAR - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
CHAR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
CHARACTER - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
CHARACTER - Static variable in class org.jooq.util.db2.DB2DataType
 
CHARACTER - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARACTER - Static variable in class org.jooq.util.h2.H2DataType
 
CHARACTER - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
CHARACTER - Static variable in class org.jooq.util.ingres.IngresDataType
 
CHARACTER - Static variable in class org.jooq.util.postgres.PostgresDataType
 
CHARACTER - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
CHARACTERFORBITDATA - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARACTERLARGEOBJECT - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARACTERLARGEOBJECT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
CHARACTERLARGEOBJECT - Static variable in class org.jooq.util.ingres.IngresDataType
 
CHARACTERVARYING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
CHARACTERVARYING - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARACTERVARYING - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
CHARACTERVARYING - Static variable in class org.jooq.util.ingres.IngresDataType
 
CHARACTERVARYING - Static variable in class org.jooq.util.postgres.PostgresDataType
 
CHARACTERVARYINGFORBITDATA - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARFORBITDATA - Static variable in class org.jooq.util.db2.DB2DataType
 
CHARFORBITDATA - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARLARGEOBJECT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
CHARLARGEOBJECT - Static variable in class org.jooq.util.ingres.IngresDataType
 
charLength() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
charLength(String) - Static method in class org.jooq.impl.Factory
Get the char_length(field) function This translates into any dialect
charLength(Field<String>) - Static method in class org.jooq.impl.Factory
Get the char_length(field) function This translates into any dialect
CHARVARYING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
CHARVARYING - Static variable in class org.jooq.util.derby.DerbyDataType
 
CHARVARYINGFORBITDATA - Static variable in class org.jooq.util.derby.DerbyDataType
 
CID - Static variable in class org.jooq.util.postgres.PostgresDataType
 
CLOB - Static variable in class org.jooq.impl.SQLDataType
The Types.CLOB type
CLOB - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
CLOB - Static variable in class org.jooq.util.db2.DB2DataType
 
CLOB - Static variable in class org.jooq.util.derby.DerbyDataType
 
CLOB - Static variable in class org.jooq.util.h2.H2DataType
 
CLOB - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
CLOB - Static variable in class org.jooq.util.ingres.IngresDataType
 
CLOB - Static variable in class org.jooq.util.oracle.OracleDataType
 
CLOB - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
close() - Method in interface org.jooq.Cursor
Explicitly close the underlying PreparedStatement and ResultSet If you fetch all records from the underlying ResultSet, jOOQ Cursor implementations will close themselves for you.
close() - Method in class org.jooq.tools.csv.CSVReader
Closes the underlying reader.
coalesce(T, T...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
coalesce(Field<T>, Field<?>...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
coalesce(T, T...) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style COALESCE(value1, value2, ... , value n) function
coalesce(Field<T>, Field<?>...) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style COALESCE(field1, field2, ... , field n) function Returns the dialect's equivalent to COALESCE: Oracle COALESCE
commitAfter(int) - Method in interface org.jooq.LoaderOptionsStep
Commit after a certain number of inserted records.
commitAll() - Method in interface org.jooq.LoaderOptionsStep
Commit only after inserting all records.
commitEach() - Method in interface org.jooq.LoaderOptionsStep
Commit each loaded record.
commitNone() - Method in interface org.jooq.LoaderOptionsStep
Leave committing / rollbacking up to client code.
Comparator - Enum in org.jooq
A comparator to be used in conditions
compareTo(UByte) - Method in class org.jooq.tools.unsigned.UByte
 
compareTo(UInteger) - Method in class org.jooq.tools.unsigned.UInteger
 
compareTo(ULong) - Method in class org.jooq.tools.unsigned.ULong
 
compareTo(UShort) - Method in class org.jooq.tools.unsigned.UShort
 
compareTo(DayToSecond) - Method in class org.jooq.types.DayToSecond
 
compareTo(YearToMonth) - Method in class org.jooq.types.YearToMonth
 
compress(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific COMPRESS() function
compress(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific COMPRESS() function
concat(Field<?>...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
concat(String...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
concat(String...) - Static method in class org.jooq.impl.Factory
Get the concat(value[, value, ...]) function
concat(Field<?>...) - Static method in class org.jooq.impl.Factory
Get the concat(field[, field, ...]) function This creates fields[0] || fields[1] || ...
Condition - Interface in org.jooq
A condition to be used in a query's where part
condition(String) - Static method in class org.jooq.impl.Factory
Create a new condition holding plain SQL.
condition(String, Object...) - Static method in class org.jooq.impl.Factory
Create a new condition holding plain SQL.
ConditionProvider - Interface in org.jooq
A common interface for all objects holding conditions (e.g. queries)
Configuration - Interface in org.jooq
The Configuration holds data about sql dialects and connections
configuration() - Method in interface org.jooq.ExecuteContext
The configuration wrapped by this context
ConfigurationProvider - Interface in org.jooq
Deprecated. - 2.1.0 [#1191] - Use ExecuteListener.start(ExecuteContext) instead to provide jOOQ with valid connections
ConfigurationRegistry - Class in org.jooq
Deprecated. - 2.1.0 [#1191] - Use ExecuteListener.start(ExecuteContext) instead to provide jOOQ with valid connections
ConfigurationRegistry() - Constructor for class org.jooq.ConfigurationRegistry
Deprecated.  
connectBy(Condition) - Method in interface org.jooq.SelectConnectByStep
Add an Oracle-specific CONNECT BY clause to the query
connectBy(String) - Method in interface org.jooq.SelectConnectByStep
Add an Oracle-specific CONNECT BY clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
connectBy(String, Object...) - Method in interface org.jooq.SelectConnectByStep
Add an Oracle-specific CONNECT BY clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
connectByIsCycle() - Static method in class org.jooq.impl.Factory
Retrieve the Oracle-specific CONNECT_BY_ISCYCLE pseudo-field (to be used along with CONNECT BY clauses)
connectByIsLeaf() - Static method in class org.jooq.impl.Factory
Retrieve the Oracle-specific CONNECT_BY_ISLEAF pseudo-field (to be used along with CONNECT BY clauses)
connectByNoCycle(Condition) - Method in interface org.jooq.SelectConnectByStep
Add an Oracle-specific CONNECT BY NOCYCLE clause to the query
connectByNoCycle(String) - Method in interface org.jooq.SelectConnectByStep
Add an Oracle-specific CONNECT BY NOCYCLE clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
connectByNoCycle(String, Object...) - Method in interface org.jooq.SelectConnectByStep
Add an Oracle-specific CONNECT BY NOCYCLE clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
Constants - Class in org.jooq
Some publicly available constants used in jOOQ
contains(T) - Method in interface org.jooq.Field
Convenience method for Field.like(String, char) including proper adding of wildcards and escaping SQL: this like ('%' || escape(value, '\') || '%') escape '\' Note: This also works with numbers, for instance val(1133).contains(13) If you're using SQLDialect.POSTGRES, then you can use this method also to express the "ARRAY contains" operator.
contains(Field<T>) - Method in interface org.jooq.Field
Convenience method for Field.like(String, char) including proper adding of wildcards and escaping SQL: this like ('%' || escape(value, '\') || '%') escape '\' Note: This also works with numbers, for instance val(1133).contains(13) If you're using SQLDialect.POSTGRES, then you can use this method also to express the "ARRAY contains" operator.
containsAny(String, char...) - Static method in class org.jooq.tools.StringUtils
Checks if the String contains any character in the given set of characters.
Context<C extends Context<C>> - Interface in org.jooq
A context type that is used for rendering SQL or for binding This interface is for JOOQ INTERNAL USE only.
convert(Object) - Method in interface org.jooq.DataType
Convert an arbitrary object into <T>
convert(Object) - Method in class org.jooq.impl.AbstractDataType
 
Convert - Class in org.jooq.tools
Utility methods for type conversions This class provides less type-safety than the general jOOQ API methods.
convert(Object, Converter<?, U>) - Static method in class org.jooq.tools.Convert
Convert an object to a type.
convert(Object, Class<? extends T>) - Static method in class org.jooq.tools.Convert
Convert an object to a type.
convert(List<?>, Class<? extends T>) - Static method in class org.jooq.tools.Convert
Convert a list of objects to a list of T, using Convert.convert(Object, Class)
convert(List<?>, Converter<?, U>) - Static method in class org.jooq.tools.Convert
Convert a list of objects to a list of T, using Convert.convert(Object, Converter)
convertArray(Object[], Converter<?, U>) - Static method in class org.jooq.tools.Convert
Convert an array into another one using a converter This uses Convert.convertArray(Object[], Class) to convert the array to an array of Converter.fromType() first, before converting that array again to Converter.toType()
convertArray(Object[], Class<?>) - Static method in class org.jooq.tools.Convert
Convert an array into another one by these rules If toClass is not an array class, then make it an array class first If toClass is an array class, then create an instance from it, and convert all elements in the from array one by one, using Convert.convert(Object, Class)
Converter<T,U> - Interface in org.jooq
A Converter for data types.
copy() - Method in class org.jooq.impl.UpdatableRecordImpl
 
copy() - Method in interface org.jooq.UpdatableRecord
Duplicate this record (in memory) and reset all fields from the primary key or main unique key, such that a subsequent call to UpdatableRecord.store() will result in an INSERT statement.
cos() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
cos(Number) - Static method in class org.jooq.impl.Factory
Get the cosine(field) function
cos(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the cosine(field) function This renders the cos function where available: cos([field])
cosh() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
cosh(Number) - Static method in class org.jooq.impl.Factory
Get the hyperbolic cosine function: cosh(field)
cosh(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the hyperbolic cosine function: cosh(field) This renders the cosh function where available: cosh([field]) ... or simulates it elsewhere using exp: (exp([field] * 2) + 1) / (exp([field] * 2))
cot() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
cot(Number) - Static method in class org.jooq.impl.Factory
Get the cotangent(field) function
cot(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the cotangent(field) function This renders the cot function where available: cot([field]) ... or simulates it elsewhere using sin and cos: cos([field]) / sin([field])
coth() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
coth(Number) - Static method in class org.jooq.impl.Factory
Get the hyperbolic cotangent function: coth(field)
coth(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the hyperbolic cotangent function: coth(field) This is not supported by any RDBMS, but simulated using exp exp: (exp([field] * 2) + 1) / (exp([field] * 2) - 1)
count() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
count() - Static method in class org.jooq.impl.Factory
Get the count(*) function
count(Field<?>) - Static method in class org.jooq.impl.Factory
Get the count(field) function
countDistinct() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
countDistinct(Field<?>) - Static method in class org.jooq.impl.Factory
Get the count(distinct field) function
countMatches(String, String) - Static method in class org.jooq.tools.StringUtils
Counts how many times the substring appears in the larger String.
countOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
create() - Method in class org.jooq.tools.reflect.Reflect
Call a constructor.
create(Object...) - Method in class org.jooq.tools.reflect.Reflect
Call a constructor.
createArray() - Method in interface org.jooq.ArrayRecord
Create an Array from this ArrayRecord This method is for INTERNAL use only.
createArray() - Method in class org.jooq.impl.ArrayRecordImpl
 
createField(String, DataType<T>, UDT<R>) - Static method in class org.jooq.impl.UDTImpl
Subclasses may call this method to create UDTField objects that are linked to this table.
createForeignKey(UniqueKey<U>, Table<R>, TableField<R, ?>...) - Static method in class org.jooq.impl.AbstractKeys
Factory method for foreign keys
createIdentity(Table<R>, TableField<R, T>) - Static method in class org.jooq.impl.AbstractKeys
Factory method for identities
createParameter(String, DataType<T>) - Static method in class org.jooq.impl.AbstractRoutine
Subclasses may call this method to create UDTField objects that are linked to this table.
createParameter(String, DataType<T>, boolean) - Static method in class org.jooq.impl.AbstractRoutine
Subclasses may call this method to create UDTField objects that are linked to this table.
createUniqueKey(Table<R>, TableField<R, ?>...) - Static method in class org.jooq.impl.AbstractKeys
Factory method for unique keys
crossJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to CROSS JOIN a table to the last table added to the FROM clause using Table.crossJoin(TableLike) If this syntax is unavailable, it is simulated with a regular INNER JOIN.
crossJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to CROSS JOIN a table to the last table added to the FROM clause using Table.crossJoin(String) If this syntax is unavailable, it is simulated with a regular INNER JOIN.
crossJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to CROSS JOIN a table to the last table added to the FROM clause using Table.crossJoin(String, Object...)
crossJoin(TableLike<?>) - Method in interface org.jooq.Table
CROSS JOIN a table to this table.
crossJoin(String) - Method in interface org.jooq.Table
CROSS JOIN a table to this table.
crossJoin(String, Object...) - Method in interface org.jooq.Table
CROSS JOIN a table to this table.
CSVParser - Class in org.jooq.tools.csv
A very simple CSV parser released under a commercial-friendly license.
CSVParser() - Constructor for class org.jooq.tools.csv.CSVParser
Constructs CSVParser using a comma for the separator.
CSVParser(char) - Constructor for class org.jooq.tools.csv.CSVParser
Constructs CSVParser with supplied separator.
CSVParser(char, char) - Constructor for class org.jooq.tools.csv.CSVParser
Constructs CSVParser with supplied separator and quote char.
CSVParser(char, char, char) - Constructor for class org.jooq.tools.csv.CSVParser
Constructs CSVReader with supplied separator and quote char.
CSVParser(char, char, char, boolean) - Constructor for class org.jooq.tools.csv.CSVParser
Constructs CSVReader with supplied separator and quote char.
CSVParser(char, char, char, boolean, boolean) - Constructor for class org.jooq.tools.csv.CSVParser
Constructs CSVReader with supplied separator and quote char.
CSVReader - Class in org.jooq.tools.csv
A very simple CSV reader released under a commercial-friendly license.
CSVReader(Reader) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader using a comma for the separator.
CSVReader(Reader, char) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator.
CSVReader(Reader, char, char) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, boolean) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator, quote char and quote handling behavior.
CSVReader(Reader, char, char, char) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, int) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, char, int) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, char, int, boolean) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator and quote char.
CSVReader(Reader, char, char, char, int, boolean, boolean) - Constructor for class org.jooq.tools.csv.CSVReader
Constructs CSVReader with supplied separator and quote char.
cube(Field<?>...) - Static method in class org.jooq.impl.Factory
Create a CUBE(field1, field2, .., fieldn) grouping field This has been observed to work with the following databases: DB2 Oracle SQL Server Sybase SQL Anywhere Please check the SQL Server documentation for a very nice explanation of CUBE, ROLLUP, and GROUPING SETS clauses in grouping contexts: http://msdn.microsoft.com/en-US/library/bb522495.aspx
CUBRIDDataType<T> - Class in org.jooq.util.cubrid
Supported data types for the SQLDialect.CUBRID dialect
CUBRIDFactory - Class in org.jooq.util.cubrid
A SQLDialect.CUBRID specific factory
CUBRIDFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.cubrid.CUBRIDFactory
Deprecated. - 2.0.5 - Use CUBRIDFactory.CUBRIDFactory(Connection, Settings) instead
CUBRIDFactory(Connection, Settings) - Constructor for class org.jooq.util.cubrid.CUBRIDFactory
Create a factory with connection and a settings configured
CUBRIDFactory(Connection) - Constructor for class org.jooq.util.cubrid.CUBRIDFactory
Create a factory with connection
cumeDist() - Static method in class org.jooq.impl.Factory
The cume_dist() over ([analytic clause]) function.
currentDate() - Static method in class org.jooq.impl.Factory
Get the current_date() function This translates into any dialect
currentTime() - Static method in class org.jooq.impl.Factory
Get the current_time() function This translates into any dialect
currentTimestamp() - Static method in class org.jooq.impl.Factory
Get the current_timestamp() function This translates into any dialect
currentUser() - Static method in class org.jooq.impl.Factory
Get the current_user() function This translates into any dialect
currval(Sequence<T>) - Method in interface org.jooq.FactoryOperations
Convenience method to fetch the CURRVAL for a sequence directly from this Factory's underlying JDBC Connection
currval(Sequence<T>) - Method in class org.jooq.impl.Factory
Convenience method to fetch the CURRVAL for a sequence directly from this Factory's underlying JDBC Connection
currval() - Method in class org.jooq.impl.SequenceImpl
 
currval() - Method in interface org.jooq.Sequence
Get the current value of this sequence
Cursor<R extends Record> - Interface in org.jooq
Cursors allow for lazy, sequential access to an underlying JDBC ResultSet.
CustomCondition - Class in org.jooq.impl
A base class for custom Condition implementations in client code.
CustomCondition() - Constructor for class org.jooq.impl.CustomCondition
 
CustomField<T> - Class in org.jooq.impl
A base class for custom Field implementations in client code.
CustomField(String, DataType<T>) - Constructor for class org.jooq.impl.CustomField
 
CustomRecord<R extends TableRecord<R>> - Class in org.jooq.impl
A base class for custom TableRecord implementations in client code.
CustomRecord(Table<R>) - Constructor for class org.jooq.impl.CustomRecord
 
CustomTable<R extends TableRecord<R>> - Class in org.jooq.impl
A base class for custom Table implementations in client code.
CustomTable(String) - Constructor for class org.jooq.impl.CustomTable
 
CustomTable(String, Schema) - Constructor for class org.jooq.impl.CustomTable
 

D

DataAccessException - Exception in org.jooq.exception
The DataAccessException is a generic RuntimeException indicating that something went wrong while executing a SQL statement from jOOQ.
DataAccessException(String) - Constructor for exception org.jooq.exception.DataAccessException
Constructor for DataAccessException.
DataAccessException(String, Throwable) - Constructor for exception org.jooq.exception.DataAccessException
Constructor for DataAccessException.
DataType<T> - Interface in org.jooq
A common interface to all dialect-specific data types
DataTypeException - Exception in org.jooq.exception
An error occurred while handling data types.
DataTypeException(String) - Constructor for exception org.jooq.exception.DataTypeException
Constructor for DataTypeException.
DataTypeException(String, Throwable) - Constructor for exception org.jooq.exception.DataTypeException
Constructor for DataTypeException.
DATE - Static variable in class org.jooq.impl.SQLDataType
The Types.DATE type
DATE - Static variable in class org.jooq.util.ase.ASEDataType
 
DATE - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
DATE - Static variable in class org.jooq.util.db2.DB2DataType
 
DATE - Static variable in class org.jooq.util.derby.DerbyDataType
 
DATE - Static variable in class org.jooq.util.h2.H2DataType
 
DATE - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
DATE - Static variable in class org.jooq.util.ingres.IngresDataType
 
DATE - Static variable in class org.jooq.util.mysql.MySQLDataType
 
DATE - Static variable in class org.jooq.util.oracle.OracleDataType
 
DATE - Static variable in class org.jooq.util.postgres.PostgresDataType
 
DATE - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
DATE - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
DATE - Static variable in class org.jooq.util.sybase.SybaseDataType
 
dateDiff(Date, Date) - Static method in class org.jooq.impl.Factory
Get the date difference in number of days This translates into any dialect
dateDiff(Field<Date>, Date) - Static method in class org.jooq.impl.Factory
Get the date difference in number of days This translates into any dialect
dateDiff(Date, Field<Date>) - Static method in class org.jooq.impl.Factory
Get the date difference in number of days This translates into any dialect
dateDiff(Field<Date>, Field<Date>) - Static method in class org.jooq.impl.Factory
Get the date difference in number of days This translates into any dialect
DatePart - Enum in org.jooq
A date part can be used with SQL functions such as extract().
DATETIME - Static variable in class org.jooq.util.ase.ASEDataType
 
DATETIME - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
DATETIME - Static variable in class org.jooq.util.h2.H2DataType
 
DATETIME - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
DATETIME - Static variable in class org.jooq.util.mysql.MySQLDataType
 
DATETIME - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
DATETIME - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
DATETIME - Static variable in class org.jooq.util.sybase.SybaseDataType
 
DATETIME2 - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
DATETIMEOFFSET - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
DATETIMEOFFSET - Static variable in class org.jooq.util.sybase.SybaseDataType
 
day(Date) - Static method in class org.jooq.impl.Factory
Get the day part of a date This is the same as calling Factory.extract(java.util.Date, DatePart) with DatePart.DAY
day(Field<? extends Date>) - Static method in class org.jooq.impl.Factory
Get the day part of a date This is the same as calling Factory.extract(Field, DatePart) with DatePart.DAY
DayToSecond - Class in org.jooq.types
An implementation for the SQL standard INTERVAL DAY TO SECOND data type.
DayToSecond(int) - Constructor for class org.jooq.types.DayToSecond
Create a new day-hour interval.
DayToSecond(int, int) - Constructor for class org.jooq.types.DayToSecond
Create a new day-hour interval.
DayToSecond(int, int, int) - Constructor for class org.jooq.types.DayToSecond
Create a new day-hour interval.
DayToSecond(int, int, int, int) - Constructor for class org.jooq.types.DayToSecond
Create a new day-hour interval.
DayToSecond(int, int, int, int, int) - Constructor for class org.jooq.types.DayToSecond
Create a new day-hour interval.
DB2DataType<T> - Class in org.jooq.util.db2
Supported data types for the SQLDialect.DB2 dialect
DB2Factory - Class in org.jooq.util.db2
A SQLDialect.DB2 specific factory
DB2Factory(Connection, SchemaMapping) - Constructor for class org.jooq.util.db2.DB2Factory
Deprecated. - 2.0.5 - Use DB2Factory.DB2Factory(Connection, Settings) instead
DB2Factory(Connection, Settings) - Constructor for class org.jooq.util.db2.DB2Factory
Create a factory with connection and a settings configured
DB2Factory(Connection) - Constructor for class org.jooq.util.db2.DB2Factory
Create a factory with connection
DBCLOB - Static variable in class org.jooq.util.db2.DB2DataType
 
debug(Object) - Method in class org.jooq.tools.JooqLogger
 
debug(Object, Object) - Method in class org.jooq.tools.JooqLogger
 
debug(Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
debug(Object, Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
DEC - Static variable in class org.jooq.util.ase.ASEDataType
 
DEC - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
DEC - Static variable in class org.jooq.util.derby.DerbyDataType
 
DEC - Static variable in class org.jooq.util.h2.H2DataType
 
DEC - Static variable in class org.jooq.util.mysql.MySQLDataType
 
DEC - Static variable in class org.jooq.util.oracle.OracleDataType
 
DECFLOAT - Static variable in class org.jooq.util.db2.DB2DataType
 
DECIMAL - Static variable in class org.jooq.impl.SQLDataType
The Types.DECIMAL type
DECIMAL - Static variable in class org.jooq.util.ase.ASEDataType
 
DECIMAL - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
DECIMAL - Static variable in class org.jooq.util.db2.DB2DataType
 
DECIMAL - Static variable in class org.jooq.util.derby.DerbyDataType
 
DECIMAL - Static variable in class org.jooq.util.h2.H2DataType
 
DECIMAL - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
DECIMAL - Static variable in class org.jooq.util.ingres.IngresDataType
 
DECIMAL - Static variable in class org.jooq.util.mysql.MySQLDataType
 
DECIMAL - Static variable in class org.jooq.util.oracle.OracleDataType
 
DECIMAL - Static variable in class org.jooq.util.postgres.PostgresDataType
 
DECIMAL - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
DECIMAL - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
DECIMAL - Static variable in class org.jooq.util.sybase.SybaseDataType
 
DECIMAL_INTEGER - Static variable in class org.jooq.impl.SQLDataType
The zero-scale Types.DECIMAL type
declareFields() - Method in interface org.jooq.Context
Whether the current context is rendering a SQL field declaration (e.g. a Field in the SELECT clause of the query).
declareFields(boolean) - Method in interface org.jooq.Context
Set the new context value for Context.declareFields()
declaresFields() - Method in class org.jooq.impl.CustomCondition
 
declaresFields() - Method in class org.jooq.impl.CustomField
 
declaresFields() - Method in class org.jooq.impl.CustomTable
 
declaresFields() - Method in interface org.jooq.QueryPartInternal
Check whether this QueryPart is able to declare fields in a SELECT clause.
declaresTables() - Method in class org.jooq.impl.CustomCondition
 
declaresTables() - Method in class org.jooq.impl.CustomField
 
declaresTables() - Method in class org.jooq.impl.CustomTable
 
declaresTables() - Method in class org.jooq.impl.TableImpl
 
declaresTables() - Method in interface org.jooq.QueryPartInternal
Check whether this QueryPart is able to declare tables in a FROM clause or JOIN clause.
declareTables() - Method in interface org.jooq.Context
Whether the current context is rendering a SQL table declaration (e.g. a Table in the FROM or JOIN clause of the query).
declareTables(boolean) - Method in interface org.jooq.Context
Set the new context value for Context.declareTables()
decode(T, Z) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
decode(T, Z, Object...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
decode(Field<T>, Field<Z>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
decode(Field<T>, Field<Z>, Field<?>...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
decode() - Static method in class org.jooq.impl.Factory
Initialise a Case statement.
decode(T, T, Z) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style DECODE(expression, search, result[, search , result]... [, default]) function
decode(T, T, Z, Object...) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style DECODE(expression, search, result[, search , result]... [, default]) function
decode(Field<T>, Field<T>, Field<Z>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style DECODE(expression, search, result[, search , result]... [, default]) function
decode(Field<T>, Field<T>, Field<Z>, Field<?>...) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style DECODE(expression, search, result[, search , result]... [, default]) function Returns the dialect's equivalent to DECODE: Oracle DECODE Other dialects: CASE WHEN [this = search] THEN [result], [WHEN more...
decode(String, String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DECODE() function Don't mix this up with the various Factory.decode() methods!
decode(Field<String>, Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DECODE() function Don't mix this up with the various Factory.decode() methods!
DEFAULT_ESCAPE_CHARACTER - Static variable in class org.jooq.tools.csv.CSVParser
The default escape character to use if none is supplied to the constructor.
DEFAULT_IGNORE_LEADING_WHITESPACE - Static variable in class org.jooq.tools.csv.CSVParser
The default leading whitespace behavior to use if none is supplied to the constructor
DEFAULT_QUOTE_CHARACTER - Static variable in class org.jooq.tools.csv.CSVParser
The default quote character to use if none is supplied to the constructor.
DEFAULT_SEPARATOR - Static variable in class org.jooq.tools.csv.CSVParser
The default separator to use if none is supplied to the constructor.
DEFAULT_SKIP_LINES - Static variable in class org.jooq.tools.csv.CSVReader
The default line to start reading.
DEFAULT_STRICT_QUOTES - Static variable in class org.jooq.tools.csv.CSVParser
The default strict quote behavior to use if none is supplied to the constructor
DefaultExecuteListener - Class in org.jooq.impl
A publicly available default implementation of ExecuteListener.
DefaultExecuteListener() - Constructor for class org.jooq.impl.DefaultExecuteListener
 
defaultIfEmpty(String, String) - Static method in class org.jooq.tools.StringUtils
Returns either the passed in String, or if the String is empty or null, the value of defaultStr.
defaultSchema - Variable in class org.jooq.conf.RenderMapping
 
defaultSettings() - Static method in class org.jooq.conf.SettingsTools
Retrieve the configured default settings If the JVM flag -Dorg.jooq.settings points to a valid settings file on the classpath, this will be loaded If the JVM flag -Dorg.jooq.settings points to a valid settings file on the file system, this will be loaded If a valid settings file is found on the classpath at /jooq-settings.xml, this will be loaded Otherwise, a new Settings object is created with its defaults
defaultString(String) - Static method in class org.jooq.tools.StringUtils
Returns either the passed in String, or if the String is null, an empty String ("").
defaultString(String, String) - Static method in class org.jooq.tools.StringUtils
Returns either the passed in String, or if the String is null, the value of defaultStr.
deg() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
deg(Number) - Static method in class org.jooq.impl.Factory
Calculate degrees from radians from this field
deg(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Calculate degrees from radians from this field This renders the degrees function where available: degrees([field]) ... or simulates it elsewhere: [field] * 180 / PI
Delete<R extends Record> - Interface in org.jooq
A Query that can delete data in the database.
delete(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DSL delete statement.
delete(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DSL delete statement.
delete() - Method in class org.jooq.impl.UpdatableRecordImpl
 
delete() - Method in interface org.jooq.UpdatableRecord
Deletes this record from the database, based on the value of the primary key or main unique key.
DeleteConditionStep<R extends Record> - Interface in org.jooq
This type is used for the Delete's DSL API.
DeleteFinalStep<R extends Record> - Interface in org.jooq
This type is used for the Delete's DSL API.
DeleteQuery<R extends Record> - Interface in org.jooq
A query used for deletion of data
deleteQuery(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DeleteQuery
deleteQuery(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DeleteQuery
deleteUsing(TableField<R, ?>...) - Method in class org.jooq.impl.TableRecordImpl
 
deleteUsing(TableField<R, ?>...) - Method in interface org.jooq.TableRecord
Deletes this record from the database, based on the value of the provided keys.
deleteWhere(Condition) - Method in interface org.jooq.MergeMatchedDeleteStep
Add an additional DELETE WHERE clause to the preceding WHEN MATCHED THEN UPDATE clause.
DeleteWhereStep<R extends Record> - Interface in org.jooq
This type is used for the Delete's DSL API.
denseRank() - Static method in class org.jooq.impl.Factory
The dense_rank() over ([analytic clause]) function.
DerbyDataType<T> - Class in org.jooq.util.derby
Supported data types for the SQLDialect.DERBY dialect
DerbyFactory - Class in org.jooq.util.derby
A SQLDialect.DERBY specific factory
DerbyFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.derby.DerbyFactory
Deprecated. - 2.0.5 - Use DerbyFactory.DerbyFactory(Connection, Settings) instead
DerbyFactory(Connection, Settings) - Constructor for class org.jooq.util.derby.DerbyFactory
Create a factory with connection and a settings configured
DerbyFactory(Connection) - Constructor for class org.jooq.util.derby.DerbyFactory
Create a factory with connection
desc() - Method in interface org.jooq.Field
Create a descending sort field from this field
desDecrypt(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_DECRYPT() function
desDecrypt(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_DECRYPT() function
desDecrypt(String, String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_DECRYPT() function
desDecrypt(Field<String>, Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_DECRYPT() function
desEncrypt(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_ENCRYPT() function
desEncrypt(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_ENCRYPT() function
desEncrypt(String, String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_ENCRYPT() function
desEncrypt(Field<String>, Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific DES_ENCRYPT() function
DetachedException - Exception in org.jooq.exception
An operation was invoked on a detached object (Query, QueryPart, or UpdatableRecord).
DetachedException(String) - Constructor for exception org.jooq.exception.DetachedException
Constructor for DetachedException.
div(Number) - Method in interface org.jooq.Field
An arithmetic expression dividing this by value If this is a numeric field, then the result is a number of the same type as this field.
div(Field<? extends Number>) - Method in interface org.jooq.Field
An arithmetic expression dividing this by value If this is a numeric field, then the result is a number of the same type as this field.
divideBy(Table<?>) - Method in interface org.jooq.Table
Create a new TABLE reference from this table, applying relational division.
DivideByOnConditionStep - Interface in org.jooq
An intermediate type for the construction of a relational division.
DivideByOnStep - Interface in org.jooq
An intermediate type for the construction of a relational division
DivideByReturningStep - Interface in org.jooq
An intermediate type for the construction of a relational division
DOUBLE - Static variable in class org.jooq.impl.SQLDataType
The Types.DOUBLE type
DOUBLE - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
DOUBLE - Static variable in class org.jooq.util.db2.DB2DataType
 
DOUBLE - Static variable in class org.jooq.util.derby.DerbyDataType
 
DOUBLE - Static variable in class org.jooq.util.h2.H2DataType
 
DOUBLE - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
DOUBLE - Static variable in class org.jooq.util.mysql.MySQLDataType
 
DOUBLE - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
DOUBLE - Static variable in class org.jooq.util.sybase.SybaseDataType
 
DOUBLE_PRECISION - Static variable in class org.jooq.util.ase.ASEDataType
 
DOUBLE_PRECISION - Static variable in class org.jooq.util.oracle.OracleDataType
 
DOUBLEPRECISION - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
DOUBLEPRECISION - Static variable in class org.jooq.util.derby.DerbyDataType
 
DOUBLEPRECISION - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
DOUBLEPRECISION - Static variable in class org.jooq.util.ingres.IngresDataType
 
DOUBLEPRECISION - Static variable in class org.jooq.util.postgres.PostgresDataType
 
DOUBLEPRECISION - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
doubleValue() - Method in class org.jooq.tools.unsigned.UByte
 
doubleValue() - Method in class org.jooq.tools.unsigned.UInteger
 
doubleValue() - Method in class org.jooq.tools.unsigned.ULong
 
doubleValue() - Method in class org.jooq.tools.unsigned.UShort
 
doubleValue() - Method in class org.jooq.types.DayToSecond
 
doubleValue() - Method in interface org.jooq.types.Interval
 
doubleValue() - Method in class org.jooq.types.YearToMonth
 

E

e() - Static method in class org.jooq.impl.Factory
The E literal (Euler number) This will be any of the following: The underlying RDBMS' E literal or E() function Math.E
EMPTY - Static variable in class org.jooq.tools.StringUtils
The empty String "".
encode(String, String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific ENCODE() function
encode(Field<String>, Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific ENCODE() function
end(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called at the end of the execution lifecycle..
end(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
end(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
endsWith(T) - Method in interface org.jooq.Field
Convenience method for Field.like(String, char) including proper adding of wildcards and escaping SQL: this like ('%' || escape(value, '\')) escape '\' Note: This also works with numbers, for instance val(1133).endsWith(33)
endsWith(Field<T>) - Method in interface org.jooq.Field
Convenience method for Field.like(String, char) including proper adding of wildcards and escaping SQL: this like ('%' || escape(value, '\')) escape '\' Note: This also works with numbers, for instance val(1133).endsWith(33)
ENUM - Static variable in class org.jooq.util.mysql.MySQLDataType
 
EnumConverter<T,U extends Enum<U>> - Class in org.jooq.impl
A base class for enum conversion.
EnumConverter(Class<T>, Class<U>) - Constructor for class org.jooq.impl.EnumConverter
 
EnumType - Interface in org.jooq
A SQL enum type.
enumType(Class<E>, int) - Static method in class org.jooq.util.mysql.MySQLFactory
Get a field based EnumType by its MySQL-specific index If your MySQL enum type contains these three values: A, B, C , then this will be the mapping of indexes to values: Enum literal as in Enum.name() Enum ordinal as in Enum.ordinal() MySQL index null-0A01B12C23 See dev.mysql.com/doc/ refman/5.5/en/enum.html for more details about MySQL enum types
equal(T) - Method in interface org.jooq.Field
this = value If value == null, then this will return a condition equivalent to Field.isNull() for convenience.
equal(Field<T>) - Method in interface org.jooq.Field
this = field
equal(Select<?>) - Method in interface org.jooq.Field
this = (SelectequalAll(Select<?>) - Method in interface org.jooq.Field
this = all (SelectequalAll(T...) - Method in interface org.jooq.Field
this = all (array) This is natively supported by SQLDialect.POSTGRES.
equalAll(Field<T[]>) - Method in interface org.jooq.Field
this = all (array) This is natively supported by SQLDialect.POSTGRES.
equalAny(Select<?>) - Method in interface org.jooq.Field
this = any (SelectequalAny(T...) - Method in interface org.jooq.Field
this = any (array) This is natively supported by SQLDialect.POSTGRES.
equalAny(Field<T[]>) - Method in interface org.jooq.Field
this = any (array) This is natively supported by SQLDialect.POSTGRES.
equalIgnoreCase(String) - Method in interface org.jooq.Field
lower(this) = lower(value)
equalIgnoreCase(Field<String>) - Method in interface org.jooq.Field
lower(this) = lower(value)
equals(Object) - Method in interface org.jooq.Field
Watch out!
equals(Object) - Method in class org.jooq.impl.AbstractDataType
 
equals(Object) - Method in class org.jooq.tools.reflect.Reflect
equals(Object) - Method in class org.jooq.tools.unsigned.UByte
 
equals(Object) - Method in class org.jooq.tools.unsigned.UInteger
 
equals(Object) - Method in class org.jooq.tools.unsigned.ULong
 
equals(Object) - Method in class org.jooq.tools.unsigned.UShort
 
equals(Object) - Method in class org.jooq.types.DayToSecond
 
equals(Object) - Method in class org.jooq.types.YearToMonth
 
equalSome(Select<?>) - Method in interface org.jooq.Field
Deprecated. - 2.0.2 - Use Field.equalAny(Select) instead
error(Object) - Method in class org.jooq.tools.JooqLogger
 
error(Object, Object) - Method in class org.jooq.tools.JooqLogger
 
error(Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
error(Object, Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
errors() - Method in interface org.jooq.Loader
A list of errors that might have happened during the load.
escape(String, char) - Static method in class org.jooq.impl.Factory
Convenience method for Factory.replace(Field, String, String) to escape data for use with Field.like(Field, char) Essentially, this escapes % and _ characters
escape(Field<String>, char) - Static method in class org.jooq.impl.Factory
Convenience method for Factory.replace(Field, String, String) to escape data for use with Field.like(Field, char) Essentially, this escapes % and _ characters
escape(String) - Static method in class org.jooq.tools.json.JSONObject
Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
escape(String) - Static method in class org.jooq.tools.json.JSONValue
Escape quotes, \, /, \r, \n, \b, \f, \t and other control characters (U+0000 through U+001F).
except(Select<R>) - Method in interface org.jooq.Select
Combine with other selects
exception() - Method in interface org.jooq.LoaderError
The underlying DataAccessException that caused the error
execute() - Method in interface org.jooq.Batch
Execute the batch operation.
execute(String) - Method in interface org.jooq.FactoryOperations
Execute a query holding plain SQL.
execute(String, Object...) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL.
execute(Configuration) - Method in class org.jooq.impl.AbstractRoutine
 
execute() - Method in class org.jooq.impl.AbstractRoutine
 
execute(String) - Method in class org.jooq.impl.Factory
Execute a query holding plain SQL.
execute(String, Object...) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL.
execute() - Method in interface org.jooq.LoaderLoadStep
Execute the load.
execute() - Method in interface org.jooq.Query
Execute the query, if it has been created with a properly configured factory
execute(Configuration) - Method in interface org.jooq.Routine
Execute the stored object using a Configuration object
execute() - Method in interface org.jooq.Routine
Execute the stored object on an underlying connection
ExecuteContext - Interface in org.jooq
A context object for Query execution passed to registered ExecuteListener's.
executeDelete(Table<R>) - Method in interface org.jooq.FactoryOperations
Delete records from a table DELETE FROM [table]
executeDelete(Table<R>, Condition) - Method in interface org.jooq.FactoryOperations
Delete records from a table DELETE FROM [table] WHERE [condition]
executeDelete(Table<R>) - Method in class org.jooq.impl.Factory
Delete records from a table DELETE FROM [table]
executeDelete(Table<R>, Condition) - Method in class org.jooq.impl.Factory
Delete records from a table DELETE FROM [table] WHERE [condition]
executeDeleteOne(Table<R>) - Method in interface org.jooq.FactoryOperations
Delete one record in a table DELETE FROM [table]
executeDeleteOne(Table<R>, Condition) - Method in interface org.jooq.FactoryOperations
Delete one record in a table DELETE FROM [table] WHERE [condition]
executeDeleteOne(Table<R>) - Method in class org.jooq.impl.Factory
Delete one record in a table DELETE FROM [table]
executeDeleteOne(Table<R>, Condition) - Method in class org.jooq.impl.Factory
Delete one record in a table DELETE FROM [table] WHERE [condition]
executeEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after executing a statement Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
executeEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
executeEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
executeInsert(Table<R>, R) - Method in interface org.jooq.FactoryOperations
Insert one record INSERT INTO [table] ...
executeInsert(Table<R>, R) - Method in class org.jooq.impl.Factory
Insert one record INSERT INTO [table] ...
ExecuteListener - Interface in org.jooq
An event listener for Query, Routine, or ResultSet render, prepare, bind, execute, fetch steps.
executeListeners - Variable in class org.jooq.conf.Settings
 
executeLogging - Variable in class org.jooq.conf.Settings
 
executePreparedStatements(Settings) - Static method in class org.jooq.conf.SettingsTools
Whether a PreparedStatement should be executed
executeStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before executing a statement Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
executeStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
executeStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
executeStaticStatements(Settings) - Static method in class org.jooq.conf.SettingsTools
Whether static Statement should be executed
ExecuteType - Enum in org.jooq
The type of database interaction that is being executed with this context.
executeUpdate(Table<R>, R) - Method in interface org.jooq.FactoryOperations
Update a table UPDATE [table] SET [modified values in record]
executeUpdate(Table<R>, R, Condition) - Method in interface org.jooq.FactoryOperations
Update a table UPDATE [table] SET [modified values in record] WHERE [condition]
executeUpdate(Table<R>, R) - Method in class org.jooq.impl.Factory
Update a table UPDATE [table] SET [modified values in record]
executeUpdate(Table<R>, R, Condition) - Method in class org.jooq.impl.Factory
Update a table UPDATE [table] SET [modified values in record] WHERE [condition]
executeUpdateOne(Table<R>, R) - Method in interface org.jooq.FactoryOperations
Update one record in a table UPDATE [table] SET [modified values in record]
executeUpdateOne(Table<R>, R, Condition) - Method in interface org.jooq.FactoryOperations
Update one record in a table UPDATE [table] SET [modified values in record] WHERE [condition]
executeUpdateOne(Table<R>, R) - Method in class org.jooq.impl.Factory
Update one record in a table UPDATE [table] SET [modified values in record]
executeUpdateOne(Table<R>, R, Condition) - Method in class org.jooq.impl.Factory
Update one record in a table UPDATE [table] SET [modified values in record] WHERE [condition]
exists(Select<?>) - Static method in class org.jooq.impl.Factory
Create an exists condition.
exp() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
exp(Number) - Static method in class org.jooq.impl.Factory
Get the exp(field) function, taking this field as the power of e
exp(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the exp(field) function, taking this field as the power of e This renders the same on all dialects: exp([field])
exportXML() - Method in interface org.jooq.Result
Deprecated. - 2.0.5 - Use Result.intoXML() instead
extract(DatePart) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
extract(Date, DatePart) - Static method in class org.jooq.impl.Factory
Get the extract(field, datePart) function This translates into any dialect
extract(Field<? extends Date>, DatePart) - Static method in class org.jooq.impl.Factory
Get the extract(field, datePart) function This translates into any dialect

F

Factory - Class in org.jooq.impl
A factory providing implementations to the org.jooq interfaces This factory is the main entry point for client code, to access jOOQ classes and functionality.
Factory(Connection, SQLDialect) - Constructor for class org.jooq.impl.Factory
Create a factory with connection and dialect configured
Factory(Connection, SQLDialect, SchemaMapping) - Constructor for class org.jooq.impl.Factory
Deprecated. - 2.0.5 - Use Factory.Factory(Connection, SQLDialect, Settings) instead
Factory(Connection, SQLDialect, Settings) - Constructor for class org.jooq.impl.Factory
Create a factory with connection, a dialect and a schema mapping configured
FactoryOperations - Interface in org.jooq
The public API for the jOOQ Factory
FALSE_VALUES - Static variable in class org.jooq.tools.Convert
 
falseCondition() - Static method in class org.jooq.impl.Factory
Return a Condition that will always evaluate to false
fetch() - Method in interface org.jooq.Cursor
Fetch all remaining records as a result.
fetch(int) - Method in interface org.jooq.Cursor
Fetch the next couple of records from the cursor.
fetch(ResultSet) - Method in interface org.jooq.FactoryOperations
Fetch all data from a JDBC ResultSet and transform it to a jOOQ Result.
fetch(Table<R>) - Method in interface org.jooq.FactoryOperations
Execute and return all records for SELECT * FROM [table]
fetch(Table<R>, Condition) - Method in interface org.jooq.FactoryOperations
Execute and return all records for SELECT * FROM [table] WHERE [condition]
fetch(String) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL.
fetch(String, Object...) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL.
fetch(String) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL.
fetch(String, Object...) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL.
fetch(ResultSet) - Method in class org.jooq.impl.Factory
Fetch all data from a JDBC ResultSet and transform it to a jOOQ Result.
fetch(Table<R>) - Method in class org.jooq.impl.Factory
Execute and return all records for SELECT * FROM [table]
fetch(Table<R>, Condition) - Method in class org.jooq.impl.Factory
Execute and return all records for SELECT * FROM [table] WHERE [condition]
fetch() - Method in interface org.jooq.InsertResultStep
The result holding returned values as specified by the InsertReturningStep This currently only works well for DB2, HSQLDB, MySQL, and Postgres
fetch() - Method in interface org.jooq.ResultQuery
Execute the query and return the generated result This is the same as calling Query.execute() and then ResultQuery.getResult()
fetch(Field<T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field from the generated result.
fetch(Field<?>, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field from the generated result.
fetch(Field<T>, Converter<? super T, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field from the generated result.
fetch(int) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field index from the generated result.
fetch(int, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field index from the generated result.
fetch(int, Converter<?, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field index from the generated result.
fetch(String) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field name from the generated result.
fetch(String, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field name from the generated result.
fetch(String, Converter<?, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field name from the generated result.
fetchAny(Table<R>) - Method in interface org.jooq.FactoryOperations
Execute and return zero or one record for SELECT * FROM [table] LIMIT 1
fetchAny(Table<R>) - Method in class org.jooq.impl.Factory
Execute and return zero or one record for SELECT * FROM [table] LIMIT 1
fetchAny() - Method in interface org.jooq.ResultQuery
Execute the query and return at most one resulting record.
fetchArray(int) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field index from the generated result.
fetchArray(int, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field index from the generated result.
fetchArray(int, Converter<?, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field index from the generated result.
fetchArray(String) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field name from the generated result.
fetchArray(String, Converter<?, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field name from the generated result.
fetchArray(String, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field name from the generated result.
fetchArray(Field<T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field from the generated result.
fetchArray(Field<?>, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field from the generated result.
fetchArray(Field<T>, Converter<? super T, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return all values for a field from the generated result.
fetchArrays() - Method in interface org.jooq.ResultQuery
Execute the query and return the generated result as an Object matrix You can access data like this query.fetchArray()[recordIndex][fieldIndex]
fetchEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after fetching data from a ResultSet.
fetchEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
fetchEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
fetchInto(H) - Method in interface org.jooq.Cursor
Fetch results into a custom handler callback
fetchInto(Class<? extends E>) - Method in interface org.jooq.Cursor
Map resulting records onto a custom type.
fetchInto(Table<Z>) - Method in interface org.jooq.Cursor
Map resulting records onto a custom record.
fetchInto(Class<? extends E>) - Method in interface org.jooq.ResultQuery
Map resulting records onto a custom type.
fetchInto(Table<Z>) - Method in interface org.jooq.ResultQuery
Map resulting records onto a custom record.
fetchInto(H) - Method in interface org.jooq.ResultQuery
Fetch results into a custom handler callback
fetchLater() - Method in interface org.jooq.ResultQuery
Fetch results asynchronously.
fetchLater(ExecutorService) - Method in interface org.jooq.ResultQuery
Fetch results asynchronously.
fetchLazy(String) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL and "lazily" return the generated result.
fetchLazy(String, Object...) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL and "lazily" return the generated result.
fetchLazy(String) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL and "lazily" return the generated result.
fetchLazy(String, Object...) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL and "lazily" return the generated result.
fetchLazy() - Method in interface org.jooq.ResultQuery
Execute the query and "lazily" return the generated result The returned Cursor holds a reference to the executed PreparedStatement and the associated ResultSet.
fetchLazy(int) - Method in interface org.jooq.ResultQuery
Execute the query and "lazily" return the generated result The returned Cursor holds a reference to the executed PreparedStatement and the associated ResultSet.
fetchMany(String) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL, possibly returning several result sets Example (Sybase ASE): String sql = "sp_help 'my_table'"; NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
fetchMany(String, Object...) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL, possibly returning several result sets.
fetchMany(String) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL, possibly returning several result sets Example (Sybase ASE): String sql = "sp_help 'my_table'"; NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
fetchMany(String, Object...) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL, possibly returning several result sets.
fetchMany() - Method in interface org.jooq.ResultQuery
Execute a query, possibly returning several result sets.
fetchMap(Field<K>) - Method in interface org.jooq.ResultQuery
Execute the query and return a Map with one of the result's columns as key and the corresponding records as value.
fetchMap(Field<K>, Field<V>) - Method in interface org.jooq.ResultQuery
Execute the query and return a Map with one of the result's columns as key and another one of the result's columns as value An exception is thrown, if the key turns out to be non-unique in the result set.
fetchMaps() - Method in interface org.jooq.ResultQuery
Execute the query and return the generated result as a list of name/value maps.
fetchOne() - Method in interface org.jooq.Cursor
Fetch the next record from the cursor This will conveniently close the Cursor, after the last Record was fetched.
fetchOne(Table<R>) - Method in interface org.jooq.FactoryOperations
Execute and return zero or one record for SELECT * FROM [table]
fetchOne(Table<R>, Condition) - Method in interface org.jooq.FactoryOperations
Execute and return zero or one record for SELECT * FROM [table] WHERE [condition]
fetchOne(String) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL.
fetchOne(String, Object...) - Method in interface org.jooq.FactoryOperations
Execute a new query holding plain SQL.
fetchOne(String) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL.
fetchOne(String, Object...) - Method in class org.jooq.impl.Factory
Execute a new query holding plain SQL.
fetchOne(Table<R>) - Method in class org.jooq.impl.Factory
Execute and return zero or one record for SELECT * FROM [table]
fetchOne(Table<R>, Condition) - Method in class org.jooq.impl.Factory
Execute and return zero or one record for SELECT * FROM [table] WHERE [condition]
fetchOne() - Method in interface org.jooq.InsertResultStep
The record holding returned values as specified by the InsertReturningStep
fetchOne(Field<T>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field from the generated result.
fetchOne(Field<?>, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field from the generated result.
fetchOne(Field<T>, Converter<? super T, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field from the generated result.
fetchOne(int) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field index from the generated result.
fetchOne(int, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field index from the generated result.
fetchOne(int, Converter<?, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field index from the generated result.
fetchOne(String) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field name from the generated result.
fetchOne(String, Class<? extends T>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field name from the generated result.
fetchOne(String, Converter<?, U>) - Method in interface org.jooq.ResultQuery
Execute the query and return return at most one resulting value for a field name from the generated result.
fetchOne() - Method in interface org.jooq.ResultQuery
Execute the query and return at most one resulting record.
fetchOneArray() - Method in interface org.jooq.ResultQuery
Execute the query and return at most one resulting record as an array You can access data like this query.fetchOneArray()[fieldIndex]
fetchOneInto(H) - Method in interface org.jooq.Cursor
Fetch the next record into a custom handler callback This will conveniently close the Cursor, after the last Record was fetched.
fetchOneInto(Class<? extends E>) - Method in interface org.jooq.Cursor
Map the next resulting record onto a custom type.
fetchOneInto(Table<Z>) - Method in interface org.jooq.Cursor
Map the next resulting record onto a custom record.
fetchOneMap() - Method in interface org.jooq.ResultQuery
Execute the query and return at most one resulting record as a name/value map.
fetchResultSet() - Method in interface org.jooq.ResultQuery
Execute the query and return the generated result as a JDBC ResultSet This will return the ResultSet returned by the JDBC driver, leaving it untouched.
fetchStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before fetching data from a ResultSet.
fetchStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
fetchStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
Field<T> - Interface in org.jooq
A field used in tables and conditions
field(String, QueryPart...) - Static method in class org.jooq.impl.Factory
A custom SQL clause that can render arbitrary SQL elements.
field(String, Class<T>, QueryPart...) - Static method in class org.jooq.impl.Factory
A custom SQL clause that can render arbitrary SQL elements.
field(String, DataType<T>, QueryPart...) - Static method in class org.jooq.impl.Factory
A custom SQL clause that can render arbitrary SQL elements.
field(String) - Static method in class org.jooq.impl.Factory
A PlainSQLField is a field that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex proprietary functions.
field(String, Object...) - Static method in class org.jooq.impl.Factory
A PlainSQLField is a field that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex proprietary functions.
field(String, Class<T>) - Static method in class org.jooq.impl.Factory
A PlainSQLField is a field that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex proprietary functions.
field(String, Class<T>, Object...) - Static method in class org.jooq.impl.Factory
A PlainSQLField is a field that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex proprietary functions.
field(String, DataType<T>) - Static method in class org.jooq.impl.Factory
A PlainSQLField is a field that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex proprietary functions.
field(String, DataType<T>, Object...) - Static method in class org.jooq.impl.Factory
A PlainSQLField is a field that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex proprietary functions.
field(String) - Method in class org.jooq.tools.reflect.Reflect
Get a wrapped field.
FieldLike - Interface in org.jooq
An object that can behave like a field (a field-like object)
FieldProvider - Interface in org.jooq
An object (not necessarily a QueryPart) that holds a list of Fields.
fields(Field<?>...) - Method in interface org.jooq.LoaderCSVStep
Specify the the fields to be loaded into the table in the correct order.
fields(Collection<? extends Field<?>>) - Method in interface org.jooq.LoaderCSVStep
Specify the the fields to be loaded into the table in the correct order.
fields() - Method in class org.jooq.tools.reflect.Reflect
Get a Map containing field names and wrapped values for the fields' values.
FieldTypeHelper - Class in org.jooq.impl
Utility methods related to the treatment of fields and their types This class is for JOOQ INTERNAL USE only.
firstValue() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
firstValue(Field<T>) - Static method in class org.jooq.impl.Factory
The first_value(field) over ([analytic clause]) function.
FLOAT - Static variable in class org.jooq.impl.SQLDataType
The Types.FLOAT type
FLOAT - Static variable in class org.jooq.util.ase.ASEDataType
 
FLOAT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
FLOAT - Static variable in class org.jooq.util.derby.DerbyDataType
 
FLOAT - Static variable in class org.jooq.util.h2.H2DataType
 
FLOAT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
FLOAT - Static variable in class org.jooq.util.ingres.IngresDataType
 
FLOAT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
FLOAT - Static variable in class org.jooq.util.oracle.OracleDataType
 
FLOAT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
FLOAT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
FLOAT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
FLOAT4 - Static variable in class org.jooq.util.h2.H2DataType
 
FLOAT4 - Static variable in class org.jooq.util.ingres.IngresDataType
 
FLOAT4 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
FLOAT8 - Static variable in class org.jooq.util.h2.H2DataType
 
FLOAT8 - Static variable in class org.jooq.util.ingres.IngresDataType
 
FLOAT8 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
floatValue() - Method in class org.jooq.tools.unsigned.UByte
 
floatValue() - Method in class org.jooq.tools.unsigned.UInteger
 
floatValue() - Method in class org.jooq.tools.unsigned.ULong
 
floatValue() - Method in class org.jooq.tools.unsigned.UShort
 
floatValue() - Method in class org.jooq.types.DayToSecond
 
floatValue() - Method in interface org.jooq.types.Interval
 
floatValue() - Method in class org.jooq.types.YearToMonth
 
floor() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
floor(T) - Static method in class org.jooq.impl.Factory
Get the largest integer value not greater than [this]
floor(Field<T>) - Static method in class org.jooq.impl.Factory
Get the largest integer value not greater than [this] This renders the floor function where available: floor([this]) ... or simulates it elsewhere using round: round([this] - 0.499999999999999)
ForeignKey<R extends Record,U extends Record> - Interface in org.jooq
A ForeignKey is an object referencing a UniqueKey.
format() - Method in interface org.jooq.Result
Get a simple formatted representation of this result.
format(int) - Method in interface org.jooq.Result
Get a simple formatted representation of this result.
formatCSV() - Method in interface org.jooq.Result
Get a simple formatted representation of this result as CSV.
formatCSV(char) - Method in interface org.jooq.Result
Get a simple formatted representation of this result as CSV.
formatHTML() - Method in interface org.jooq.Result
Get a simple formatted representation of this result as HTML.
formatIndentEnd() - Method in interface org.jooq.RenderContext
Stop indenting subsequent SQL by one level (two characters), if Settings.isRenderFormatted() is set to true This is the same as calling RenderContext.formatIndentEnd(int) with a parameter of 2
formatIndentEnd(int) - Method in interface org.jooq.RenderContext
Stop indenting subsequent SQL by a number of characters, if Settings.isRenderFormatted() is set to true
formatIndentLockEnd() - Method in interface org.jooq.RenderContext
Stop indenting subsequent SQL at the same level as the current line, if Settings.isRenderFormatted() is set to true
formatIndentLockStart() - Method in interface org.jooq.RenderContext
Start indenting subsequent SQL at the same level as the current line, if Settings.isRenderFormatted() is set to true
formatIndentStart() - Method in interface org.jooq.RenderContext
Start indenting subsequent SQL by one level (two characters), if Settings.isRenderFormatted() is set to true This is the same as calling RenderContext.formatIndentStart(int) with a parameter of 2
formatIndentStart(int) - Method in interface org.jooq.RenderContext
Start indenting subsequent SQL by a number of characters, if Settings.isRenderFormatted() is set to true
formatJSON() - Method in interface org.jooq.Result
Get a simple formatted representation of this result as a JSON array of array.
formatNewLine() - Method in interface org.jooq.RenderContext
Render a new line character (only if Settings.isRenderFormatted() is set to true)
formatSeparator() - Method in interface org.jooq.RenderContext
Render a new line character (only if Settings.isRenderFormatted() is set to true), or a whitespace separator character otherwise
formatXML() - Method in interface org.jooq.Result
Get this result formatted as XML
forShare() - Method in interface org.jooq.SelectForUpdateStep
Add a FOR SHARE clause to the end of the query.
forShare() - Method in interface org.jooq.SimpleSelectForUpdateStep
Add a FOR SHARE clause to the end of the query.
forUpdate() - Method in interface org.jooq.SelectForUpdateStep
Add a FOR UPDATE clause to the end of the query.
forUpdate() - Method in interface org.jooq.SimpleSelectForUpdateStep
Add a FOR UPDATE clause to the end of the query.
from(T) - Method in interface org.jooq.Converter
Convert a database object to a user object
from(T) - Method in class org.jooq.impl.EnumConverter
 
from(Object) - Method in interface org.jooq.Record
Load data into this record from a source.
from(TableLike<?>...) - Method in interface org.jooq.SelectFromStep
Add a FROM clause to the query
from(Collection<? extends TableLike<?>>) - Method in interface org.jooq.SelectFromStep
Add a FROM clause to the query
from(String) - Method in interface org.jooq.SelectFromStep
Add a FROM clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
from(String, Object...) - Method in interface org.jooq.SelectFromStep
Add a FROM clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
fromType() - Method in interface org.jooq.Converter
The database type
fromType() - Method in class org.jooq.impl.EnumConverter
 
fromValue(String) - Static method in enum org.jooq.conf.RenderKeywordStyle
 
fromValue(String) - Static method in enum org.jooq.conf.RenderNameStyle
 
fromValue(String) - Static method in enum org.jooq.conf.StatementType
 
fullOuterJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to FULL OUTER JOIN a table to the last table added to the FROM clause using Table.fullOuterJoin(TableLike) This is only possible where the underlying RDBMS supports it
fullOuterJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to FULL OUTER JOIN a table to the last table added to the FROM clause using Table.fullOuterJoin(String) This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
fullOuterJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to FULL OUTER JOIN a tableto the last table added to the FROM clause using Table.fullOuterJoin(String, Object...)
fullOuterJoin(TableLike<?>) - Method in interface org.jooq.Table
FULL OUTER JOIN a table to this table.
fullOuterJoin(String) - Method in interface org.jooq.Table
FULL OUTER JOIN a table to this table.
fullOuterJoin(String, Object...) - Method in interface org.jooq.Table
FULL OUTER JOIN a table to this table.
function(String, Class<T>, Field<?>...) - Static method in class org.jooq.impl.Factory
function() can be used to access native functions that are not yet or insufficiently supported by jOOQ NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
function(String, DataType<T>, Field<?>...) - Static method in class org.jooq.impl.Factory
function() can be used to access native functions that are not yet or insufficiently supported by jOOQ NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
FutureResult<R extends Record> - Interface in org.jooq
Fetch results asynchronously.

G

get() - Method in interface org.jooq.ArrayRecord
Get the contained array
get() - Method in class org.jooq.impl.ArrayRecordImpl
 
get() - Method in class org.jooq.tools.reflect.Reflect
Get the wrapped object
get(String) - Method in class org.jooq.tools.reflect.Reflect
Get a field value.
getArrayDataType() - Method in interface org.jooq.DataType
Retrieve the data type for an ARRAY of this data type
getArrayDataType() - Method in class org.jooq.impl.AbstractDataType
 
getArrayType() - Method in interface org.jooq.DataType
Retrieve the Java type associated with ARRAYs of this data type
getArrayType() - Method in class org.jooq.impl.AbstractDataType
 
getAttachables() - Method in interface org.jooq.AttachableInternal
Get the list of dependent Attachables This method is for JOOQ INTERNAL USE only.
getAttachables() - Method in class org.jooq.impl.ArrayRecordImpl
 
getAttachables() - Method in class org.jooq.impl.CustomCondition
Subclasses may further override this method
Get the list of dependent Attachables This method is for JOOQ INTERNAL USE only.
getAttachables() - Method in class org.jooq.impl.CustomField
Subclasses may further override this method
Get the list of dependent Attachables This method is for JOOQ INTERNAL USE only.
getAttachables() - Method in class org.jooq.impl.SchemaImpl
 
getAttachables0() - Method in class org.jooq.impl.AbstractRoutine
 
getAttachables0() - Method in class org.jooq.impl.PackageImpl
 
getAttachables0() - Method in class org.jooq.impl.TableImpl
 
getAttachables0() - Method in class org.jooq.impl.UDTImpl
 
getBindValues() - Method in interface org.jooq.Query
Retrieve the bind values that will be bound by this Query.
getBindValues() - Method in interface org.jooq.QueryPartInternal
Retrieve the bind values that will be bound by this QueryPart This method is exposed publicly in Query.getBindValues()
getCastTypeName() - Method in interface org.jooq.DataType
Retrieve the dialect-specific type name associated with this data type used for casting This is useful for some dialects that have specialised type names for cast expressions.
getCastTypeName(Configuration) - Method in interface org.jooq.DataType
Retrieve the dialect-specific type name associated with this data type used for casting This is useful for some dialects that have specialised type names for cast expressions.
getCastTypeName(Configuration, int, int) - Method in interface org.jooq.DataType
Retrieve the dialect-specific type name associated with this data type used for casting This is useful for some dialects that have specialised type names for cast expressions.
getCastTypeName() - Method in class org.jooq.impl.AbstractDataType
 
getCastTypeName(Configuration, int, int) - Method in class org.jooq.impl.AbstractDataType
 
getCastTypeName(Configuration) - Method in class org.jooq.impl.AbstractDataType
 
getClass(int, int, int) - Static method in class org.jooq.impl.FieldTypeHelper
 
getConfiguration() - Method in interface org.jooq.AttachableInternal
Get the underlying configuration
getConnection() - Method in interface org.jooq.Configuration
Retrieve the configured connection
getConnection() - Method in interface org.jooq.ExecuteContext
The Connection that is being used for execution.
getConnection() - Method in class org.jooq.impl.Factory
Retrieve the configured connection
getData() - Method in interface org.jooq.Configuration
Get all custom data from this Configuration This is custom data that was previously set to the configuration using Configuration.setData(String, Object).
getData(String) - Method in interface org.jooq.Configuration
Get some custom data from this Configuration This is custom data that was previously set to the configuration using Configuration.setData(String, Object).
getData() - Method in class org.jooq.impl.Factory
Get all custom data from this Configuration This is custom data that was previously set to the configuration using Configuration.setData(String, Object).
getData(String) - Method in class org.jooq.impl.Factory
Get some custom data from this Configuration This is custom data that was previously set to the configuration using Configuration.setData(String, Object).
getDataType() - Method in interface org.jooq.ArrayRecord
Get the data type of the array type
getDataType(Configuration) - Method in interface org.jooq.DataType
The dialect-specific data type representing this data type.
getDataType(Configuration) - Method in class org.jooq.impl.AbstractDataType
 
getDataType(SQLDialect, String) - Static method in class org.jooq.impl.AbstractDataType
 
getDataType(SQLDialect, Class<? extends T>) - Static method in class org.jooq.impl.AbstractDataType
 
getDataType() - Method in class org.jooq.impl.ArrayRecordImpl
 
getDataType(Class<? extends T>) - Static method in class org.jooq.impl.Factory
Get the default data type for the Factory's underlying SQLDialect and a given Java type.
getDataType(SQLDialect, Class<? extends T>) - Static method in class org.jooq.impl.FieldTypeHelper
 
getDataType() - Method in class org.jooq.impl.SequenceImpl
 
getDataType() - Method in class org.jooq.impl.UDTImpl
 
getDataType() - Method in interface org.jooq.NamedTypeProviderQueryPart
The type of this object (might not be dialect-specific)
getDataType(Configuration) - Method in interface org.jooq.NamedTypeProviderQueryPart
The dialect-specific type of this object
getDataType() - Method in interface org.jooq.Sequence
Get the sequence data type
getDataType() - Method in interface org.jooq.UDT
The UDT's data type as known to the database
getDataType(Class<? extends T>) - Static method in class org.jooq.util.ase.ASEDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.cubrid.CUBRIDDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.db2.DB2DataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.derby.DerbyDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.h2.H2DataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.hsqldb.HSQLDBDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.ingres.IngresDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.mysql.MySQLDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.oracle.OracleDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.postgres.PostgresDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.sqlite.SQLiteDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.sqlserver.SQLServerDataType
 
getDataType(Class<? extends T>) - Static method in class org.jooq.util.sybase.SybaseDataType
 
getDays() - Method in class org.jooq.types.DayToSecond
Get the day-part of this interval
getDefaultDataType(SQLDialect, String) - Static method in class org.jooq.impl.AbstractDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.ase.ASEDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.cubrid.CUBRIDDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.db2.DB2DataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.derby.DerbyDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.h2.H2DataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.hsqldb.HSQLDBDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.ingres.IngresDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.mysql.MySQLDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.oracle.OracleDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.postgres.PostgresDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.sqlite.SQLiteDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.sqlserver.SQLServerDataType
 
getDefaultDataType(String) - Static method in class org.jooq.util.sybase.SybaseDataType
 
getDefaultSchema() - Method in class org.jooq.conf.RenderMapping
Gets the value of the defaultSchema property.
getDialect() - Method in interface org.jooq.Configuration
Retrieve the configured dialect
getDialect() - Method in interface org.jooq.DataType
Retrieve the underlying SQLDialect
getDialect() - Method in class org.jooq.impl.AbstractDataType
 
getDialect() - Method in class org.jooq.impl.Factory
Retrieve the configured dialect
getDialect() - Method in interface org.jooq.QueryPartInternal
Deprecated. - 2.0.2 - The attached SQL dialect of a QueryPart should no longer be referenced, as query parts become more and more Configuration - independent
getDialectDataType(SQLDialect, String, int, int) - Static method in class org.jooq.impl.FieldTypeHelper
Convert a type name (using precision and scale) into a Java class
getDialectJavaType(SQLDialect, String, int, int) - Static method in class org.jooq.impl.FieldTypeHelper
Convert a type name (using precision and scale) into a Java class
getExecuteListeners() - Method in class org.jooq.conf.Settings
 
getFactory() - Method in enum org.jooq.SQLDialect
 
getField(Field<T>) - Method in interface org.jooq.FieldProvider
Get a specific field from this field provider.
getField(String) - Method in interface org.jooq.FieldProvider
Get a specific field from this field provider.
getField(int) - Method in interface org.jooq.FieldProvider
Get a specific field from this field provider.
getField() - Method in interface org.jooq.Identity
The IDENTITY column.
getFieldList() - Method in class org.jooq.impl.TableImpl
 
getFieldList() - Method in class org.jooq.impl.UDTImpl
 
getFields() - Method in interface org.jooq.FieldProvider
 
getFields() - Method in interface org.jooq.Key
The fields that make up the KEY
getFieldsArray() - Method in interface org.jooq.Key
The fields that make up the KEY
getFromSQLInput(Configuration, SQLInput, Field<T>) - Static method in class org.jooq.impl.FieldTypeHelper
 
getFromStatement(ExecuteContext, Class<? extends T>, int) - Static method in class org.jooq.impl.FieldTypeHelper
 
getHours() - Method in class org.jooq.types.DayToSecond
Get the hour-part of this interval
getIdentity() - Method in class org.jooq.impl.CustomTable
 
getIdentity() - Method in interface org.jooq.Table
Retrieve the table's IDENTITY information, if available.
getIndex(Field<?>) - Method in interface org.jooq.FieldProvider
Get a fields index from this field provider
getInParameters() - Method in class org.jooq.impl.AbstractRoutine
 
getInParameters() - Method in interface org.jooq.Routine
A list of IN parameters passed to the stored procedure as argument.
getInput() - Method in class org.jooq.conf.MappedSchema
Gets the value of the input property.
getInput() - Method in class org.jooq.conf.MappedTable
Gets the value of the input property.
getInValues() - Method in class org.jooq.impl.AbstractRoutine
 
getKey() - Method in interface org.jooq.ForeignKey
The referenced Key
getKeys() - Method in class org.jooq.impl.UpdatableTableImpl
Retrieve all of the table's unique keys.
getKeys() - Method in interface org.jooq.UpdatableTable
Retrieve all of the table's unique keys.
getList() - Method in interface org.jooq.ArrayRecord
Get the contained array as a List
getList() - Method in class org.jooq.impl.ArrayRecordImpl
 
getLiteral() - Method in interface org.jooq.EnumType
The literal as defined in the database
getLogger(Class<?>) - Static method in class org.jooq.tools.JooqLogger
 
getMainKey() - Method in class org.jooq.impl.UpdatableTableImpl
Retrieve the table's main unique key.
getMainKey() - Method in interface org.jooq.UpdatableTable
Retrieve the table's main unique key.
getMicro() - Method in class org.jooq.types.DayToSecond
Get the (truncated) micro-part of this interval
getMilli() - Method in class org.jooq.types.DayToSecond
Get the (truncated) milli-part of this interval
getMinutes() - Method in class org.jooq.types.DayToSecond
Get the minute-part of this interval
getMonths() - Method in class org.jooq.types.YearToMonth
 
getName() - Method in interface org.jooq.ArrayRecord
Get the name of the array type
getName() - Method in interface org.jooq.EnumType
The type name as registered in the database, if applicable (Postgres schema-scope enum type only).
getName() - Method in interface org.jooq.Field
The name of the field.
getName() - Method in class org.jooq.impl.ArrayRecordImpl
 
getName() - Method in class org.jooq.impl.SequenceImpl
 
getName() - Method in interface org.jooq.NamedQueryPart
The name of this query part
getName() - Method in interface org.jooq.Param
The name of the field.
getName() - Method in interface org.jooq.Sequence
Get the sequence name
getName() - Method in enum org.jooq.SQLDialect
 
getNano() - Method in class org.jooq.types.DayToSecond
Get the nano-part of this interval
getOrder() - Method in interface org.jooq.SortField
Get the underlying sort order of this sort field
getOutParameters() - Method in class org.jooq.impl.AbstractRoutine
 
getOutParameters() - Method in interface org.jooq.Routine
A list of OUT parameters passed to the stored procedure as argument.
getOutput() - Method in class org.jooq.conf.MappedSchema
Gets the value of the output property.
getOutput() - Method in class org.jooq.conf.MappedTable
Gets the value of the output property.
getPackage() - Method in class org.jooq.impl.AbstractRoutine
 
getPackage() - Method in interface org.jooq.Routine
The container package of this stored procedure or function.
getParam(String) - Method in interface org.jooq.Query
Get a named parameter from the Query, provided its name.
getParam(String) - Method in interface org.jooq.QueryPartInternal
Retrieve a named parameter that will be bound by this QueryPart This method is exposed publicly in Query.getParam(String)
getParameters() - Method in class org.jooq.impl.AbstractRoutine
 
getParameters() - Method in interface org.jooq.Routine
 
getParamName() - Method in interface org.jooq.Param
The parameter name.
getParams() - Method in interface org.jooq.Query
Get a Map of named parameters.
getParams() - Method in interface org.jooq.QueryPartInternal
Retrieve the named parameters that will be bound by this QueryPart This method is exposed publicly in Query.getParams()
getPrimaryKey() - Method in interface org.jooq.MasterDataType
Get the primary key value for this master data type
getQuery() - Method in interface org.jooq.SelectFinalStep
Get the underlying Query that is being constructed.
getQuery() - Method in interface org.jooq.SimpleSelectFinalStep
Get the underlying Query that is being constructed.
getRecordType() - Method in class org.jooq.impl.CustomTable
Subclasses must implement this method
Subclasses must override this method if they use the generic type parameter for other types than Record
getRecordType() - Method in class org.jooq.impl.TableImpl
Subclasses must override this method if they use the generic type parameter for other types than Record
getRecordType() - Method in class org.jooq.impl.UDTImpl
Subclasses must override this method if they use the generic type parameter for other types than Record
getRecordType() - Method in interface org.jooq.ResultQuery
The record type produced by this query
getRecordType() - Method in interface org.jooq.Type
 
getReferences() - Method in class org.jooq.impl.CustomTable
 
getReferences() - Method in interface org.jooq.Table
Get the list of FOREIGN KEY's of this table
getReferences() - Method in interface org.jooq.UniqueKey
A list of all ForeignKeys, referencing this UniqueKey
getReferencesFrom(Table<O>) - Method in class org.jooq.impl.UpdatableTableImpl
 
getReferencesFrom(Table<O>) - Method in interface org.jooq.UpdatableTable
Get a list of FOREIGN KEY's of a specific table, referencing a this table.
getReferencesTo(Table<O>) - Method in interface org.jooq.Table
Get a list of FOREIGN KEY's of this table, referencing a specific table.
getRenderKeywordStyle() - Method in class org.jooq.conf.Settings
Gets the value of the renderKeywordStyle property.
getRenderMapping() - Method in class org.jooq.conf.Settings
Gets the value of the renderMapping property.
getRenderMapping(Settings) - Static method in class org.jooq.conf.SettingsTools
Lazy access to RenderMapping
getRenderNameStyle() - Method in class org.jooq.conf.Settings
Gets the value of the renderNameStyle property.
getResult() - Method in interface org.jooq.ResultQuery
Return the result generated by a previous call to execute();
getReturnedRecord() - Method in interface org.jooq.InsertQuery
The record holding returned values as specified by any of the InsertQuery.setReturning() methods.
getReturnedRecords() - Method in interface org.jooq.InsertQuery
The records holding returned values as specified by any of the InsertQuery.setReturning() methods.
getReturnParameter() - Method in class org.jooq.impl.AbstractRoutine
 
getReturnValue() - Method in class org.jooq.impl.AbstractRoutine
 
getReturnValue() - Method in interface org.jooq.Routine
 
getSchema() - Method in class org.jooq.impl.SequenceImpl
 
getSchema() - Method in interface org.jooq.SchemaProvider
 
getSchema() - Method in interface org.jooq.Sequence
Get the sequence schema
getSchemaMapping() - Method in interface org.jooq.Configuration
Deprecated. - 2.0.5 - Use Configuration.getSettings() instead
getSchemaMapping() - Method in class org.jooq.impl.Factory
Deprecated. 
getSchemata() - Method in class org.jooq.conf.RenderMapping
 
getSeconds() - Method in class org.jooq.types.DayToSecond
Get the second-part of this interval
getSelect() - Method in interface org.jooq.Select
All fields selected in this query
getSequence(String) - Method in class org.jooq.impl.SchemaImpl
 
getSequence(String) - Method in interface org.jooq.Schema
Get a sequence by its name (case-sensitive) in this schema, or null if no such sequence exists
getSequences() - Method in class org.jooq.impl.SchemaImpl
List all sequences contained in this schema
getSequences() - Method in interface org.jooq.Schema
List all sequences contained in this schema
getSettings() - Method in interface org.jooq.Configuration
Retrieve the runtime configuration settings
getSettings() - Method in class org.jooq.impl.Factory
Retrieve the runtime configuration settings
getSign() - Method in class org.jooq.types.DayToSecond
 
getSign() - Method in interface org.jooq.types.Interval
The sign of the interval
getSign() - Method in class org.jooq.types.YearToMonth
 
getSQL() - Method in interface org.jooq.Query
Retrieve the SQL code rendered by this Query This method can be expected to work correctly for any SQL dialect, as a query is usually "attached" when created from a Factory.
getSQL(boolean) - Method in interface org.jooq.Query
Retrieve the SQL code rendered by this Query See Query.getSQL() for more details
getSQL() - Method in interface org.jooq.QueryPartInternal
Retrieve the SQL that will be rendered by this QueryPart This method is exposed publicly in Query.getSQL()
getSQL(boolean) - Method in interface org.jooq.QueryPartInternal
Retrieve the SQL that will be rendered by this QueryPart This method is exposed publicly in Query.getSQL(boolean)
getSQLDataType() - Method in interface org.jooq.DataType
Get the standard SQL data type of this (dialect-specific) data type if available.
getSQLDataType() - Method in class org.jooq.impl.AbstractDataType
 
getSQLType() - Method in interface org.jooq.DataType
Get JDBC Types value
getSQLType() - Method in class org.jooq.impl.AbstractDataType
 
getSQLTypeName() - Method in class org.jooq.impl.UDTRecordImpl
 
getStatementType() - Method in class org.jooq.conf.Settings
Gets the value of the statementType property.
getStatementType(Settings) - Static method in class org.jooq.conf.SettingsTools
Get the statement type from the settings
getTable() - Method in interface org.jooq.Identity
The IDENTITY's owner table
getTable() - Method in class org.jooq.impl.CustomRecord
 
getTable(String) - Method in class org.jooq.impl.SchemaImpl
 
getTable() - Method in class org.jooq.impl.TableRecordImpl
 
getTable() - Method in class org.jooq.impl.UpdatableRecordImpl
 
getTable() - Method in interface org.jooq.Key
The Key's owner table
getTable(String) - Method in interface org.jooq.Schema
Get a table by its name (case-sensitive) in this schema, or null if no such table exists
getTable() - Method in interface org.jooq.TableField
 
getTable() - Method in interface org.jooq.TableRecord
The table from which this record was read
getTable() - Method in interface org.jooq.UpdatableRecord
The table from which this record was read
getTables() - Method in class org.jooq.conf.MappedSchema
 
getTables() - Method in class org.jooq.impl.SchemaImpl
List all tables contained in this schema
getTables() - Method in interface org.jooq.Schema
List all tables contained in this schema
getTotalDays() - Method in class org.jooq.types.DayToSecond
Get the whole interval in days
getTotalHours() - Method in class org.jooq.types.DayToSecond
Get the whole interval in hours
getTotalMicro() - Method in class org.jooq.types.DayToSecond
Get the whole interval in micro-seconds
getTotalMilli() - Method in class org.jooq.types.DayToSecond
Get the whole interval in milli-seconds
getTotalMinutes() - Method in class org.jooq.types.DayToSecond
Get the whole interval in minutes
getTotalNano() - Method in class org.jooq.types.DayToSecond
Get the whole interval in nano-seconds
getTotalSeconds() - Method in class org.jooq.types.DayToSecond
Get the whole interval in seconds
getType() - Method in interface org.jooq.DataType
Retrieve the Java type associated with this data type
getType(int, int) - Method in interface org.jooq.DataType
Retrieve a Java type associated with this data type and precision/scale
getType() - Method in interface org.jooq.Field
The Java type of the field.
getType() - Method in class org.jooq.impl.AbstractDataType
 
getType(int, int) - Method in class org.jooq.impl.AbstractDataType
 
getType() - Method in interface org.jooq.NamedTypeProviderQueryPart
The type of this object
getTypeMapping(Class<?>) - Static method in class org.jooq.impl.FieldTypeHelper
 
getTypeMapping() - Method in class org.jooq.impl.SchemaImpl
 
getTypeMapping() - Method in class org.jooq.impl.UDTImpl
 
getTypeMapping() - Method in interface org.jooq.Schema
The complete type mapping for this schema.
getTypeMapping() - Method in interface org.jooq.UDT
The complete type mapping for this UDT.
getTypeName() - Method in interface org.jooq.DataType
Retrieve the dialect-specific type name associated with this data type
getTypeName(Configuration) - Method in interface org.jooq.DataType
Retrieve the dialect-specific type name associated with this data type
getTypeName() - Method in class org.jooq.impl.AbstractDataType
 
getTypeName(Configuration) - Method in class org.jooq.impl.AbstractDataType
 
getUDT(String) - Method in class org.jooq.impl.SchemaImpl
 
getUDT() - Method in class org.jooq.impl.UDTRecordImpl
 
getUDT(String) - Method in interface org.jooq.Schema
Get a UDT by its name (case-sensitive) in this schema, or null if no such UDT exists
getUDT() - Method in interface org.jooq.UDTField
 
getUDT() - Method in interface org.jooq.UDTRecord
The UDT from which this record was read
getUDTs() - Method in class org.jooq.impl.SchemaImpl
List all UDTs contained in this schema
getUDTs() - Method in interface org.jooq.Schema
List all UDTs contained in this schema
getValue(Parameter<Z>) - Method in class org.jooq.impl.AbstractRoutine
 
getValue(int) - Method in class org.jooq.impl.ArrayRecordImpl
 
getValue() - Method in interface org.jooq.Param
Get the parameter's underlying value.
getValue(Field<T>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValue(Field<T>, T) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValue(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValue(String, Object) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValue(Field<?>, Class<? extends T>) - Method in interface org.jooq.Record
Get a converted value from this Record, providing a field.
getValue(Field<?>, Class<? extends T>, T) - Method in interface org.jooq.Record
Get a converted value from this record, providing a field.
getValue(Field<T>, Converter<? super T, U>) - Method in interface org.jooq.Record
Get a converted value from this Record, providing a field.
getValue(Field<T>, Converter<? super T, U>, U) - Method in interface org.jooq.Record
Get a converted value from this record, providing a field.
getValue(String, Class<? extends T>) - Method in interface org.jooq.Record
Get a converted value from this Record, providing a field name.
getValue(String, Class<? extends T>, T) - Method in interface org.jooq.Record
Get a converted value from this record, providing a field name.
getValue(int, Converter<?, U>) - Method in interface org.jooq.Record
Get a converted value from this Store, providing a field index.
getValue(int, Converter<?, U>, U) - Method in interface org.jooq.Record
Get a converted value from this Store, providing a field index.
getValue(String, Converter<?, U>) - Method in interface org.jooq.Record
Get a converted value from this Record, providing a field name.
getValue(String, Converter<?, U>, U) - Method in interface org.jooq.Record
Get a converted value from this record, providing a field name.
getValue(int, Field<T>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValue(int, Field<T>, T) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValue(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValue(int, int, Object) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValue(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValue(int, String, Object) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValue(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValue(int, E) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValue(int, Class<? extends T>) - Method in interface org.jooq.Store
Get a converted value from this Store, providing a field index.
getValue(int, Class<? extends T>, T) - Method in interface org.jooq.Store
Get a converted value from this Store, providing a field index.
getValueAsArray(Field<A>) - Method in interface org.jooq.Record
Get an array value from this Record, providing an ArrayRecord field.
getValueAsArray(Field<A>, T[]) - Method in interface org.jooq.Record
Get an array value from this Record, providing an ArrayRecord field.
getValueAsArray(int, Field<A>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsArray(int, Field<A>, T[]) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsBigDecimal(Field<?>, BigDecimal) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsBigDecimal(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsBigDecimal(String, BigDecimal) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsBigDecimal(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(int, Field<?>, BigDecimal) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(int, int, BigDecimal) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(int, String, BigDecimal) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigDecimal(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsBigDecimal(int, BigDecimal) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsBigInteger(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsBigInteger(Field<?>, BigInteger) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsBigInteger(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsBigInteger(String, BigInteger) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsBigInteger(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigInteger(int, Field<?>, BigInteger) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigInteger(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigInteger(int, int, BigInteger) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigInteger(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigInteger(int, String, BigInteger) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBigInteger(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsBigInteger(int, BigInteger) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsBoolean(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsBoolean(Field<?>, Boolean) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsBoolean(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsBoolean(String, Boolean) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsBoolean(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBoolean(int, Field<?>, Boolean) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBoolean(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBoolean(int, int, Boolean) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBoolean(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBoolean(int, String, Boolean) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsBoolean(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsBoolean(int, Boolean) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsByte(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsByte(Field<?>, Byte) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsByte(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsByte(String, Byte) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsByte(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsByte(int, Field<?>, Byte) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsByte(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsByte(int, int, Byte) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsByte(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsByte(int, String, Byte) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsByte(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsByte(int, Byte) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsDate(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsDate(Field<?>, Date) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsDate(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsDate(String, Date) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsDate(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDate(int, Field<?>, Date) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDate(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDate(int, int, Date) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDate(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDate(int, String, Date) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDate(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsDate(int, Date) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsDouble(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsDouble(Field<?>, Double) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsDouble(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsDouble(String, Double) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsDouble(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDouble(int, Field<?>, Double) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDouble(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDouble(int, int, Double) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDouble(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDouble(int, String, Double) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsDouble(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsDouble(int, Double) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsFloat(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsFloat(Field<?>, Float) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsFloat(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsFloat(String, Float) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsFloat(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsFloat(int, Field<?>, Float) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsFloat(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsFloat(int, int, Float) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsFloat(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsFloat(int, String, Float) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsFloat(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsFloat(int, Float) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsInteger(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsInteger(Field<?>, Integer) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsInteger(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsInteger(String, Integer) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsInteger(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsInteger(int, Field<?>, Integer) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsInteger(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsInteger(int, int, Integer) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsInteger(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsInteger(int, String, Integer) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsInteger(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsInteger(int, Integer) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsLong(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsLong(Field<?>, Long) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsLong(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsLong(String, Long) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsLong(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsLong(int, Field<?>, Long) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsLong(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsLong(int, int, Long) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsLong(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsLong(int, String, Long) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsLong(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsLong(int, Long) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsShort(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsShort(Field<?>, Short) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsShort(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsShort(String, Short) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsShort(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsShort(int, Field<?>, Short) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsShort(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsShort(int, int, Short) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsShort(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsShort(int, String, Short) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsShort(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsShort(int, Short) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsString(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsString(Field<?>, String) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsString(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsString(String, String) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsString(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsString(int, Field<?>, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsString(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsString(int, int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsString(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsString(int, String, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsString(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsString(int, String) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsTime(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsTime(Field<?>, Time) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsTime(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsTime(String, Time) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsTime(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTime(int, Field<?>, Time) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTime(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTime(int, int, Time) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTime(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTime(int, String, Time) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTime(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsTime(int, Time) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsTimestamp(Field<?>) - Method in interface org.jooq.Record
Get a value from this Record, providing a field.
getValueAsTimestamp(Field<?>, Timestamp) - Method in interface org.jooq.Record
Get a value from this record, providing a field.
getValueAsTimestamp(String) - Method in interface org.jooq.Record
Get a value from this Record, providing a field name.
getValueAsTimestamp(String, Timestamp) - Method in interface org.jooq.Record
Get a value from this record, providing a field name.
getValueAsTimestamp(int, Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTimestamp(int, Field<?>, Timestamp) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTimestamp(int, int) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTimestamp(int, int, Timestamp) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTimestamp(int, String) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTimestamp(int, String, Timestamp) - Method in interface org.jooq.Result
Convenience method to fetch a value at a given position in the result.
getValueAsTimestamp(int) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValueAsTimestamp(int, Timestamp) - Method in interface org.jooq.Store
Get a value from this Store, providing a field index.
getValues(Field<T>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(Field<?>, Class<? extends T>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(Field<T>, Converter<? super T, U>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(int, Class<? extends T>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(int, Converter<?, U>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(String, Class<? extends T>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValues(String, Converter<?, U>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsBigDecimal(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsBigDecimal(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsBigDecimal(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsBigInteger(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsBigInteger(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsBigInteger(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsByte(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsByte(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsByte(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsDate(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsDate(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsDate(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsDouble(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsDouble(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsDouble(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsFloat(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsFloat(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsFloat(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsInteger(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsInteger(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsInteger(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsLong(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsLong(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsLong(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsShort(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsShort(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsShort(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsString(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsString(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsString(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsTime(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsTime(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsTime(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsTimestamp(Field<?>) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsTimestamp(int) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getValuesAsTimestamp(String) - Method in interface org.jooq.Result
Convenience method to fetch all values for a given field.
getYears() - Method in class org.jooq.types.YearToMonth
 
GRAPHIC - Static variable in class org.jooq.util.db2.DB2DataType
 
greaterOrEqual(T) - Method in interface org.jooq.Field
this >= value
greaterOrEqual(Field<T>) - Method in interface org.jooq.Field
this >= field
greaterOrEqual(Select<?>) - Method in interface org.jooq.Field
this >= (SelectgreaterOrEqualAll(Select<?>) - Method in interface org.jooq.Field
this >= all (SelectgreaterOrEqualAll(T...) - Method in interface org.jooq.Field
this >= all (array) This is natively supported by SQLDialect.POSTGRES.
greaterOrEqualAll(Field<T[]>) - Method in interface org.jooq.Field
this >= all (array) This is natively supported by SQLDialect.POSTGRES.
greaterOrEqualAny(Select<?>) - Method in interface org.jooq.Field
this >= any (SelectgreaterOrEqualAny(T...) - Method in interface org.jooq.Field
this >= any (array) This is natively supported by SQLDialect.POSTGRES.
greaterOrEqualAny(Field<T[]>) - Method in interface org.jooq.Field
this >= any (array) This is natively supported by SQLDialect.POSTGRES.
greaterOrEqualSome(Select<?>) - Method in interface org.jooq.Field
Deprecated. - 2.0.2 - Use Field.greaterOrEqualAny(Select) instead
greaterThan(T) - Method in interface org.jooq.Field
this > value
greaterThan(Field<T>) - Method in interface org.jooq.Field
this > field
greaterThan(Select<?>) - Method in interface org.jooq.Field
this > (SelectgreaterThanAll(Select<?>) - Method in interface org.jooq.Field
this > all (SelectgreaterThanAll(T...) - Method in interface org.jooq.Field
this > all (array) This is natively supported by SQLDialect.POSTGRES.
greaterThanAll(Field<T[]>) - Method in interface org.jooq.Field
this > all (array) This is natively supported by SQLDialect.POSTGRES.
greaterThanAny(Select<?>) - Method in interface org.jooq.Field
this > any (SelectgreaterThanAny(T...) - Method in interface org.jooq.Field
this > any (array) This is natively supported by SQLDialect.POSTGRES.
greaterThanAny(Field<T[]>) - Method in interface org.jooq.Field
this > any (array) This is natively supported by SQLDialect.POSTGRES.
greaterThanSome(Select<?>) - Method in interface org.jooq.Field
Deprecated. - 2.0.2 - Use Field.greaterThanAny(Select) instead
greatest(T...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
greatest(Field<?>...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
greatest(T, T...) - Static method in class org.jooq.impl.Factory
Find the greatest among all values This function has no equivalent in Adaptive Server, Derby, SQL Server and Sybase SQL Anywhere.
greatest(Field<T>, Field<?>...) - Static method in class org.jooq.impl.Factory
Find the greatest among all values This function has no equivalent in Adaptive Server, Derby, SQL Server and Sybase SQL Anywhere.
groupBy(Field<?>...) - Method in interface org.jooq.SelectGroupByStep
Add a GROUP BY clause to the query
groupBy(Collection<? extends Field<?>>) - Method in interface org.jooq.SelectGroupByStep
Add a GROUP BY clause to the query
groupConcat(Field<?>) - Static method in class org.jooq.impl.Factory
Get the aggregated concatenation for a field.
groupConcatDistinct(Field<?>) - Static method in class org.jooq.impl.Factory
Get the aggregated concatenation for a field.
GroupConcatOrderByStep - Interface in org.jooq
MySQL's GROUP_CONCAT function.
GroupConcatSeparatorStep - Interface in org.jooq
MySQL's GROUP_CONCAT function.
grouping(Field<?>) - Static method in class org.jooq.impl.Factory
Create a GROUPING(field) aggregation field to be used along with CUBE, ROLLUP, and GROUPING SETS groupings This has been observed to work with the following databases: DB2 Oracle SQL Server Sybase SQL Anywhere
groupingId(Field<?>...) - Static method in class org.jooq.impl.Factory
Create a GROUPING_ID(field1, field2, .., fieldn) aggregation field to be used along with CUBE, ROLLUP, and GROUPING SETS groupings This has been observed to work with the following databases: Oracle SQL Server
groupingSets(Field<?>...) - Static method in class org.jooq.impl.Factory
Create a GROUPING SETS(field1, field2, .., fieldn) grouping field where each grouping set only consists of a single field.
groupingSets(Field<?>[]...) - Static method in class org.jooq.impl.Factory
Create a GROUPING SETS((field1a, field1b), (field2a), .., (fieldna, fieldnb)) grouping field This has been observed to work with the following databases: DB2 Oracle SQL Server Sybase SQL Anywhere Please check the SQL Server documentation for a very nice explanation of CUBE, ROLLUP, and GROUPING SETS clauses in grouping contexts: http://msdn.microsoft.com/en-US/library/bb522495.aspx
groupingSets(Collection<Field<?>>...) - Static method in class org.jooq.impl.Factory
Create a GROUPING SETS((field1a, field1b), (field2a), .., (fieldna, fieldnb)) grouping field This has been observed to work with the following databases: DB2 Oracle SQL Server Sybase SQL Anywhere Please check the SQL Server documentation for a very nice explanation of CUBE, ROLLUP, and GROUPING SETS clauses in grouping contexts: http://msdn.microsoft.com/en-US/library/bb522495.aspx

H

H2DataType<T> - Class in org.jooq.util.h2
Supported data types for the SQLDialect.H2 dialect
H2Factory - Class in org.jooq.util.h2
A SQLDialect.H2 specific factory
H2Factory(Connection, SchemaMapping) - Constructor for class org.jooq.util.h2.H2Factory
Deprecated. - 2.0.5 - Use H2Factory.H2Factory(Connection, Settings) instead
H2Factory(Connection, Settings) - Constructor for class org.jooq.util.h2.H2Factory
Create a factory with connection and a settings configured
H2Factory(Connection) - Constructor for class org.jooq.util.h2.H2Factory
Create a factory with connection
hashCode() - Method in class org.jooq.impl.AbstractDataType
 
hashCode() - Method in class org.jooq.tools.reflect.Reflect
hashCode() - Method in class org.jooq.tools.unsigned.UByte
 
hashCode() - Method in class org.jooq.tools.unsigned.UInteger
 
hashCode() - Method in class org.jooq.tools.unsigned.ULong
 
hashCode() - Method in class org.jooq.tools.unsigned.UShort
 
hashCode() - Method in class org.jooq.types.DayToSecond
 
hashCode() - Method in class org.jooq.types.YearToMonth
 
hasNext() - Method in interface org.jooq.Cursor
Check whether this cursor has a next record This will conveniently close the Cursor, after the last Record was fetched.
having(Condition...) - Method in interface org.jooq.SelectHavingStep
Add a HAVING clause to the query
having(Collection<Condition>) - Method in interface org.jooq.SelectHavingStep
Add a HAVING clause to the query
having(String) - Method in interface org.jooq.SelectHavingStep
Add a HAVING clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
having(String, Object...) - Method in interface org.jooq.SelectHavingStep
Add a HAVING clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
hint(String) - Method in interface org.jooq.SelectFromStep
Add an Oracle-style hint to the preceding select clause Example: Factory create = new Factory(); create.select(field1, field2) .hint("/*+ALL_ROWS*/") .from(table1) .execute();
hour(Date) - Static method in class org.jooq.impl.Factory
Get the hour part of a date This is the same as calling Factory.extract(java.util.Date, DatePart) with DatePart.HOUR
hour(Field<? extends Date>) - Static method in class org.jooq.impl.Factory
Get the hour part of a date This is the same as calling Factory.extract(Field, DatePart) with DatePart.HOUR
HSQLDBDataType<T> - Class in org.jooq.util.hsqldb
Supported data types for the SQLDialect.HSQLDB dialect
HSQLDBFactory - Class in org.jooq.util.hsqldb
A SQLDialect.HSQLDB specific factory
HSQLDBFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.hsqldb.HSQLDBFactory
Deprecated. - 2.0.5 - Use HSQLDBFactory.HSQLDBFactory(Connection, Settings) instead
HSQLDBFactory(Connection, Settings) - Constructor for class org.jooq.util.hsqldb.HSQLDBFactory
Create a factory with connection and a settings configured
HSQLDBFactory(Connection) - Constructor for class org.jooq.util.hsqldb.HSQLDBFactory
Create a factory with connection

I

I1 - Static variable in class org.jooq.util.ingres.IngresDataType
 
I2 - Static variable in class org.jooq.util.ingres.IngresDataType
 
I4 - Static variable in class org.jooq.util.ingres.IngresDataType
 
I8 - Static variable in class org.jooq.util.ingres.IngresDataType
 
Identity<R extends Record,T> - Interface in org.jooq
An Identity is an object representing an IDENTITY column as understood by the SQL:2003 standard.
IDENTITY - Static variable in class org.jooq.util.h2.H2DataType
 
ignored() - Method in interface org.jooq.Loader
The number of ignored rows
ignoreNulls() - Method in interface org.jooq.WindowIgnoreNullsStep
Add an IGNORE NULLS clause to the window function.
ignoreRows(int) - Method in interface org.jooq.LoaderCSVOptionsStep
Specify that a certain number of rows should be ignored from the CSV file.
IMAGE - Static variable in class org.jooq.util.ase.ASEDataType
 
IMAGE - Static variable in class org.jooq.util.h2.H2DataType
 
IMAGE - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
IMAGE - Static variable in class org.jooq.util.sybase.SybaseDataType
 
in(Collection<T>) - Method in interface org.jooq.Field
Create a condition to check this field against several values SQL: this in (values...)
in(T...) - Method in interface org.jooq.Field
Create a condition to check this field against several values SQL: this in (values...)
in(Field<?>...) - Method in interface org.jooq.Field
Create a condition to check this field against several values SQL: this in (values...)
in(Select<?>) - Method in interface org.jooq.Field
Create a condition to check this field against a subquery Note that the subquery must return exactly one field.
in(T...) - Method in interface org.jooq.PivotInStep
Specify the acceptable values for pivoting
in(Field<?>...) - Method in interface org.jooq.PivotInStep
Specify the acceptable values for pivoting This clause is generally only supported by SQLDialect.ORACLE.
in(Collection<? extends Field<T>>) - Method in interface org.jooq.PivotInStep
Specify the acceptable values for pivoting This clause is generally only supported by SQLDialect.ORACLE.
info(Object) - Method in class org.jooq.tools.JooqLogger
 
info(Object, Object) - Method in class org.jooq.tools.JooqLogger
 
info(Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
info(Object, Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
IngresDataType<T> - Class in org.jooq.util.ingres
Supported data types for the SQLDialect.INGRES dialect
INGRESDATE - Static variable in class org.jooq.util.ingres.IngresDataType
 
IngresFactory - Class in org.jooq.util.ingres
A SQLDialect.INGRES specific factory
IngresFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.ingres.IngresFactory
Deprecated. - 2.0.5 - Use IngresFactory.IngresFactory(Connection, Settings) instead
IngresFactory(Connection, Settings) - Constructor for class org.jooq.util.ingres.IngresFactory
Create a factory with connection and a settings configured
IngresFactory(Connection) - Constructor for class org.jooq.util.ingres.IngresFactory
Create a factory with connection
INITIAL_READ_SIZE - Static variable in class org.jooq.tools.csv.CSVParser
 
inline() - Method in interface org.jooq.RenderContext
Whether bind variables should be inlined, rather than rendered as '?'
inline(boolean) - Method in interface org.jooq.RenderContext
Set the new context value for RenderContext.inline()
input - Variable in class org.jooq.conf.MappedSchema
 
input - Variable in class org.jooq.conf.MappedTable
 
Insert<R extends Record> - Interface in org.jooq
A Query that can insert data in the database.
InsertFinalStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
insertInto(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DSL insert statement.
insertInto(Table<R>, Field<?>...) - Method in interface org.jooq.FactoryOperations
Create a new DSL insert statement.
insertInto(Table<R>, Collection<? extends Field<?>>) - Method in interface org.jooq.FactoryOperations
Create a new DSL insert statement.
insertInto(Table<R>, Select<?>) - Method in interface org.jooq.FactoryOperations
Deprecated. - 2.0.3 - Use any of these methods instead:
insertInto(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DSL insert statement.
insertInto(Table<R>, Field<?>...) - Method in class org.jooq.impl.Factory
Create a new DSL insert statement.
insertInto(Table<R>, Collection<? extends Field<?>>) - Method in class org.jooq.impl.Factory
Create a new DSL insert statement.
insertInto(Table<R>, Select<?>) - Method in class org.jooq.impl.Factory
Deprecated. 
InsertOnDuplicateSetMoreStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
InsertOnDuplicateSetStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
InsertOnDuplicateStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
insertQuery(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new InsertQuery
insertQuery(Table<R>) - Method in class org.jooq.impl.Factory
Create a new InsertQuery
InsertQuery<R extends Record> - Interface in org.jooq
A query for data insertion
InsertResultStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
InsertReturningStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
InsertSetMoreStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's alternative DSL API.
InsertSetStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's alternative DSL API.
InsertValuesStep<R extends Record> - Interface in org.jooq
This type is used for the Insert's DSL API.
INT - Static variable in class org.jooq.util.ase.ASEDataType
 
INT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
INT - Static variable in class org.jooq.util.derby.DerbyDataType
 
INT - Static variable in class org.jooq.util.h2.H2DataType
 
INT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
INT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
INT - Static variable in class org.jooq.util.oracle.OracleDataType
 
INT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
INT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
INT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
INT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
INT2 - Static variable in class org.jooq.util.h2.H2DataType
 
INT2 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
INT2 - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
INT4 - Static variable in class org.jooq.util.h2.H2DataType
 
INT4 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
INT8 - Static variable in class org.jooq.util.h2.H2DataType
 
INT8 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
INT8 - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
INTEGER - Static variable in class org.jooq.impl.SQLDataType
The Types.INTEGER type
INTEGER - Static variable in class org.jooq.util.ase.ASEDataType
 
INTEGER - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
INTEGER - Static variable in class org.jooq.util.db2.DB2DataType
 
INTEGER - Static variable in class org.jooq.util.derby.DerbyDataType
 
INTEGER - Static variable in class org.jooq.util.h2.H2DataType
 
INTEGER - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
INTEGER - Static variable in class org.jooq.util.ingres.IngresDataType
 
INTEGER - Static variable in class org.jooq.util.mysql.MySQLDataType
 
INTEGER - Static variable in class org.jooq.util.oracle.OracleDataType
 
INTEGER - Static variable in class org.jooq.util.postgres.PostgresDataType
 
INTEGER - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
INTEGER - Static variable in class org.jooq.util.sybase.SybaseDataType
 
INTEGER1 - Static variable in class org.jooq.util.ingres.IngresDataType
 
INTEGER2 - Static variable in class org.jooq.util.ingres.IngresDataType
 
INTEGER4 - Static variable in class org.jooq.util.ingres.IngresDataType
 
INTEGER8 - Static variable in class org.jooq.util.ingres.IngresDataType
 
INTEGERUNSIGNED - Static variable in class org.jooq.impl.SQLDataType
The unsigned Types.INTEGER type
INTEGERUNSIGNED - Static variable in class org.jooq.util.mysql.MySQLDataType
 
internalAPI(Class<I>) - Method in interface org.jooq.Adapter
Adapt to an internal type assuming its functionality This is for JOOQ INTERNAL USE only.
intersect(Select<R>) - Method in interface org.jooq.Select
Combine with other selects
Interval - Interface in org.jooq.types
A substitute for JDBC's missing java.sql.Interval data type.
INTERVALDAYTOSECOND - Static variable in class org.jooq.impl.SQLDataType
The SQL standard INTERVAL DAY TO SECOND data type
INTERVALDAYTOSECOND - Static variable in class org.jooq.util.oracle.OracleDataType
 
INTERVALDAYTOSECOND - Static variable in class org.jooq.util.postgres.PostgresDataType
 
INTERVALYEARTOMONTH - Static variable in class org.jooq.impl.SQLDataType
The SQL standard INTERVAL YEAR TO MONTH data type
INTERVALYEARTOMONTH - Static variable in class org.jooq.util.oracle.OracleDataType
 
INTERVALYEARTOMONTH - Static variable in class org.jooq.util.postgres.PostgresDataType
 
into(Class<? extends E>) - Method in interface org.jooq.Record
Map resulting records onto a custom type.
into(Table<R>) - Method in interface org.jooq.Record
Map resulting records onto a custom record type.
into(Class<? extends E>) - Method in interface org.jooq.Result
Map resulting records onto a custom type.
into(Table<Z>) - Method in interface org.jooq.Result
Map resulting records onto a custom record.
into(H) - Method in interface org.jooq.Result
Map results into a custom handler callback
intoArray() - Method in interface org.jooq.Record
Convert this record into an array.
intoArray() - Method in interface org.jooq.Result
Convert this result into an array of arrays The resulting array has the same number of first-dimension elements as this result has records.
intoXML() - Method in interface org.jooq.Result
Get this result as XML
INTUNSIGNED - Static variable in class org.jooq.util.mysql.MySQLDataType
 
intValue() - Method in class org.jooq.tools.unsigned.UByte
 
intValue() - Method in class org.jooq.tools.unsigned.UInteger
 
intValue() - Method in class org.jooq.tools.unsigned.ULong
 
intValue() - Method in class org.jooq.tools.unsigned.UShort
 
intValue() - Method in class org.jooq.types.DayToSecond
 
intValue() - Method in interface org.jooq.types.Interval
 
intValue() - Method in class org.jooq.types.YearToMonth
 
InvalidResultException - Exception in org.jooq.exception
An unexpected result was encountered after executing a Query.
InvalidResultException(String) - Constructor for exception org.jooq.exception.InvalidResultException
Constructor for InvalidResultException.
isAllWhiteSpace(CharSequence) - Method in class org.jooq.tools.csv.CSVParser
precondition: sb.length() > 0
isArray() - Method in interface org.jooq.DataType
Whether this data type is an array type.
isArray() - Method in class org.jooq.impl.AbstractDataType
 
isBinary() - Method in interface org.jooq.DataType
Whether this data type is any binary type.
isBinary() - Method in class org.jooq.impl.AbstractDataType
 
isBlank(String) - Static method in class org.jooq.tools.StringUtils
Checks if a String is whitespace, empty ("") or null.
isClosed() - Method in interface org.jooq.Cursor
Check whether this Cursor has been explicitly or "conveniently" closed.
isDateTime() - Method in interface org.jooq.DataType
Whether this data type is any date or time type.
isDateTime() - Method in class org.jooq.impl.AbstractDataType
 
isDebugEnabled() - Method in class org.jooq.tools.JooqLogger
 
isDefaulted() - Method in interface org.jooq.Parameter
Whether this parameter has a default value Procedures and functions with defaulted parameters behave slightly different from ones without defaulted parameters.
isEmpty() - Method in interface org.jooq.Result
Whether there are any records contained in this Result
isEmpty(String) - Static method in class org.jooq.tools.StringUtils
Checks if a String is empty ("") or null.
isExecuteLogging() - Method in class org.jooq.conf.Settings
Gets the value of the executeLogging property.
isFalse() - Method in interface org.jooq.Field
Create a condition to check this field against known string literals for false SQL: lcase(this) in ("0", "n", "no", "false", "off", "disabled")
isInfoEnabled() - Method in class org.jooq.tools.JooqLogger
 
isInterval() - Method in interface org.jooq.DataType
Whether this data type is any interval type.
isInterval() - Method in class org.jooq.impl.AbstractDataType
 
isNextCharacterEscapable(String, boolean, int) - Method in class org.jooq.tools.csv.CSVParser
precondition: the current character is an escape
isNotEmpty() - Method in interface org.jooq.Result
Whether there are any records contained in this Result
isNotNull() - Method in interface org.jooq.Field
Create a condition to check this field against null.
isNull() - Method in interface org.jooq.Field
Create a condition to check this field against null.
isNullLiteral() - Method in interface org.jooq.Field
Whether this field represents a null literal.
isNullLiteral() - Method in class org.jooq.impl.CustomField
Subclasses may further override this method
Whether this field represents a null literal.
isNumeric() - Method in interface org.jooq.DataType
Whether this data type is any numeric data type.
isNumeric() - Method in class org.jooq.impl.AbstractDataType
 
isOverloaded() - Method in class org.jooq.impl.AbstractRoutine
 
isPending() - Method in class org.jooq.tools.csv.CSVParser
 
isRenderFormatted() - Method in class org.jooq.conf.Settings
Gets the value of the renderFormatted property.
isString() - Method in interface org.jooq.DataType
Whether this data type is any character data type.
isString() - Method in class org.jooq.impl.AbstractDataType
 
isTemporal() - Method in interface org.jooq.DataType
Whether this data type is any date or time type.
isTemporal() - Method in class org.jooq.impl.AbstractDataType
 
isTraceEnabled() - Method in class org.jooq.tools.JooqLogger
 
isTrue() - Method in interface org.jooq.Field
Create a condition to check this field against known string literals for true SQL: lcase(this) in ("1", "y", "yes", "true", "on", "enabled")
iterator() - Method in class org.jooq.impl.ArrayRecordImpl
 

J

JAVAIOSERIALIZABLE - Static variable in class org.jooq.util.derby.DerbyDataType
 
join(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to INNER JOIN a table to the last table added to the FROM clause using Table.join(TableLike)
join(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to INNER JOIN a table to the last table added to the FROM clause using Table.join(String) NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
join(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to INNER JOIN a table to the last table added to the FROM clause using Table.join(String, Object...)
join(TableLike<?>) - Method in interface org.jooq.Table
INNER JOIN a table to this table.
join(String) - Method in interface org.jooq.Table
INNER JOIN a table to this table.
join(String, Object...) - Method in interface org.jooq.Table
INNER JOIN a table to this table.
join(T...) - Static method in class org.jooq.tools.StringUtils
Joins the elements of the provided array into a single String containing the provided list of elements.
join(Object[], char) - Static method in class org.jooq.tools.StringUtils
Joins the elements of the provided array into a single String containing the provided list of elements.
join(Object[], char, int, int) - Static method in class org.jooq.tools.StringUtils
Joins the elements of the provided array into a single String containing the provided list of elements.
join(Object[], String) - Static method in class org.jooq.tools.StringUtils
Joins the elements of the provided array into a single String containing the provided list of elements.
join(Object[], String, int, int) - Static method in class org.jooq.tools.StringUtils
Joins the elements of the provided array into a single String containing the provided list of elements.
JoinType - Enum in org.jooq
The type of join
JooqLogger - Class in org.jooq.tools
The jOOQ logger abstraction
JooqLogger() - Constructor for class org.jooq.tools.JooqLogger
 
JSONArray - Class in org.jooq.tools.json
A JSON array.
JSONArray() - Constructor for class org.jooq.tools.json.JSONArray
 
JSONObject - Class in org.jooq.tools.json
A JSON object.
JSONObject() - Constructor for class org.jooq.tools.json.JSONObject
 
JSONValue - Class in org.jooq.tools.json
 
JSONValue() - Constructor for class org.jooq.tools.json.JSONValue
 

K

Key<R extends Record> - Interface in org.jooq
A Key is an object representing a UNIQUE KEY, a PRIMARY KEY, or a FOREIGN KEY.
keyword(String) - Method in interface org.jooq.RenderContext
Append a SQL keyword to the context's contained StringBuilder Use this to have your SQL keyword rendered in RenderKeywordStyle (upper or lower case)

L

lag() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lag(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lag(int, T) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lag(int, Field<T>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lag(Field<T>) - Static method in class org.jooq.impl.Factory
The lag(field) over ([analytic clause]) function.
lag(Field<T>, int) - Static method in class org.jooq.impl.Factory
The lag(field, offset) over ([analytic clause]) function.
lag(Field<T>, int, T) - Static method in class org.jooq.impl.Factory
The lag(field, offset, defaultValue) over ([analytic clause]) function.
lag(Field<T>, int, Field<T>) - Static method in class org.jooq.impl.Factory
The lag(field, offset, defaultValue) over ([analytic clause]) function.
lastID() - Method in interface org.jooq.FactoryOperations
Retrieve the last inserted ID.
lastID() - Method in class org.jooq.impl.Factory
Retrieve the last inserted ID.
lastValue() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lastValue(Field<T>) - Static method in class org.jooq.impl.Factory
The last_value(field) over ([analytic clause]) function.
lead() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lead(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lead(int, T) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lead(int, Field<T>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lead(Field<T>) - Static method in class org.jooq.impl.Factory
The lead(field) over ([analytic clause]) function.
lead(Field<T>, int) - Static method in class org.jooq.impl.Factory
The lead(field, offset) over ([analytic clause]) function.
lead(Field<T>, int, T) - Static method in class org.jooq.impl.Factory
The lead(field, offset, defaultValue) over ([analytic clause]) function.
lead(Field<T>, int, Field<T>) - Static method in class org.jooq.impl.Factory
The lead(field, offset, defaultValue) over ([analytic clause]) function.
least(T...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
least(Field<?>...) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
least(T, T...) - Static method in class org.jooq.impl.Factory
Find the least among all values This function has no equivalent in Adaptive Server, Derby, SQL Server and Sybase SQL Anywhere.
least(Field<T>, Field<?>...) - Static method in class org.jooq.impl.Factory
Find the least among all values This function has no equivalent in Adaptive Server, Derby, SQL Server and Sybase SQL Anywhere.
leftOuterJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to LEFT OUTER JOIN a table to the last table added to the FROM clause using Table.leftOuterJoin(TableLike)
leftOuterJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to LEFT OUTER JOIN a table to the last table added to the FROM clause using Table.leftOuterJoin(String) NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
leftOuterJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to LEFT OUTER JOIN a table to the last table added to the FROM clause using Table.leftOuterJoin(String, Object...)
leftOuterJoin(TableLike<?>) - Method in interface org.jooq.Table
LEFT OUTER JOIN a table to this table.
leftOuterJoin(String) - Method in interface org.jooq.Table
LEFT OUTER JOIN a table to this table.
leftOuterJoin(String, Object...) - Method in interface org.jooq.Table
LEFT OUTER JOIN a table to this table.
leftPad(String, int) - Static method in class org.jooq.tools.StringUtils
Left pad a String with spaces (' ').
leftPad(String, int, char) - Static method in class org.jooq.tools.StringUtils
Left pad a String with a specified character.
leftPad(String, int, String) - Static method in class org.jooq.tools.StringUtils
Left pad a String with a specified String.
length() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
length(String) - Static method in class org.jooq.impl.Factory
Get the length of a VARCHAR type.
length(Field<String>) - Static method in class org.jooq.impl.Factory
Get the length of a VARCHAR type.
lessOrEqual(T) - Method in interface org.jooq.Field
this <= value
lessOrEqual(Field<T>) - Method in interface org.jooq.Field
this <= field
lessOrEqual(Select<?>) - Method in interface org.jooq.Field
this <= (SelectlessOrEqualAll(Select<?>) - Method in interface org.jooq.Field
this <= all (SelectlessOrEqualAll(T...) - Method in interface org.jooq.Field
this <= all (array) This is natively supported by SQLDialect.POSTGRES.
lessOrEqualAll(Field<T[]>) - Method in interface org.jooq.Field
this <= all (array) This is natively supported by SQLDialect.POSTGRES.
lessOrEqualAny(Select<?>) - Method in interface org.jooq.Field
this <= any (SelectlessOrEqualAny(T...) - Method in interface org.jooq.Field
this <= any (array) This is natively supported by SQLDialect.POSTGRES.
lessOrEqualAny(Field<T[]>) - Method in interface org.jooq.Field
this <= any (array) This is natively supported by SQLDialect.POSTGRES.
lessOrEqualSome(Select<?>) - Method in interface org.jooq.Field
Deprecated. - 2.0.2 - Use Field.lessOrEqualAny(Select) instead
lessThan(T) - Method in interface org.jooq.Field
this < value
lessThan(Field<T>) - Method in interface org.jooq.Field
this < field
lessThan(Select<?>) - Method in interface org.jooq.Field
this < (SelectlessThanAll(Select<?>) - Method in interface org.jooq.Field
this < all (SelectlessThanAll(T...) - Method in interface org.jooq.Field
this < all (array) This is natively supported by SQLDialect.POSTGRES.
lessThanAll(Field<T[]>) - Method in interface org.jooq.Field
this < all (array) This is natively supported by SQLDialect.POSTGRES.
lessThanAny(Select<?>) - Method in interface org.jooq.Field
this < any (SelectlessThanAny(T...) - Method in interface org.jooq.Field
this < any (array) This is natively supported by SQLDialect.POSTGRES.
lessThanAny(Field<T[]>) - Method in interface org.jooq.Field
this < any (array) This is natively supported by SQLDialect.POSTGRES.
lessThanSome(Select<?>) - Method in interface org.jooq.Field
Deprecated. - 2.0.2 - Use Field.lessThanAny(Select) instead
level() - Static method in class org.jooq.impl.Factory
Retrieve the Oracle-specific LEVEL pseudo-field (to be used along with CONNECT BY clauses)
like(Field<String>) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this like value
like(Field<String>, char) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this like value escape 'e'
like(String) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this like value
like(String, char) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this like value escape 'e'
limit(int) - Method in interface org.jooq.SelectLimitStep
Add a LIMIT clause to the query If there is no LIMIT or TOP clause in your RDBMS, this may be simulated with a ROW_NUMBER() window function and nested SELECT statements.
limit(Param<Integer>) - Method in interface org.jooq.SelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(int, int) - Method in interface org.jooq.SelectLimitStep
Add a LIMIT clause to the query Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(int, Param<Integer>) - Method in interface org.jooq.SelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(Param<Integer>, int) - Method in interface org.jooq.SelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(Param<Integer>, Param<Integer>) - Method in interface org.jooq.SelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(int) - Method in interface org.jooq.SimpleSelectLimitStep
Add a LIMIT clause to the query If there is no LIMIT or TOP clause in your RDBMS, this may be simulated with a ROW_NUMBER() window function and nested SELECT statements.
limit(Param<Integer>) - Method in interface org.jooq.SimpleSelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(int, int) - Method in interface org.jooq.SimpleSelectLimitStep
Add a LIMIT clause to the query Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(int, Param<Integer>) - Method in interface org.jooq.SimpleSelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(Param<Integer>, int) - Method in interface org.jooq.SimpleSelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
limit(Param<Integer>, Param<Integer>) - Method in interface org.jooq.SimpleSelectLimitStep
Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
listAgg(Field<?>) - Static method in class org.jooq.impl.Factory
Get the aggregated concatenation for a field.
listAgg(Field<?>, String) - Static method in class org.jooq.impl.Factory
Get the aggregated concatenation for a field.
literal(T) - Static method in class org.jooq.impl.Factory
Get a typed Field for a literal.
literal(Object, Class<T>) - Static method in class org.jooq.impl.Factory
Get a typed Field for a literal.
literal(Object, DataType<T>) - Static method in class org.jooq.impl.Factory
Get a typed Field for a literal.
literal(String) - Method in interface org.jooq.RenderContext
Append some (quoted) literal to the context's contained StringBuilder
ln() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
ln(Number) - Static method in class org.jooq.impl.Factory
Get the ln(field) function, taking the natural logarithm of this field
ln(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the ln(field) function, taking the natural logarithm of this field This renders the ln or log function where available: ln([field]) or log([field])
loadCSV(File) - Method in interface org.jooq.LoaderSourceStep
Load CSV data
loadCSV(String) - Method in interface org.jooq.LoaderSourceStep
Load CSV data
loadCSV(InputStream) - Method in interface org.jooq.LoaderSourceStep
Load CSV data
loadCSV(Reader) - Method in interface org.jooq.LoaderSourceStep
Load CSV data
Loader<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
LoaderCSVOptionsStep<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
LoaderCSVStep<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
LoaderError - Interface in org.jooq
An error that occurred during loading.
LoaderLoadStep<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
LoaderOptionsStep<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
LoaderSourceStep<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
LoaderXMLStep<R extends TableRecord<R>> - Interface in org.jooq
The Loader API is used for configuring data loads.
loadInto(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new Loader object to load data from a CSV or XML source
loadInto(Table<R>) - Method in class org.jooq.impl.Factory
Create a new Loader object to load data from a CSV or XML source
loadXML(File) - Method in interface org.jooq.LoaderSourceStep
Load XML data
loadXML(String) - Method in interface org.jooq.LoaderSourceStep
Load XML data
loadXML(InputStream) - Method in interface org.jooq.LoaderSourceStep
Load XML data
loadXML(Reader) - Method in interface org.jooq.LoaderSourceStep
Load XML data
loadXML(InputSource) - Method in interface org.jooq.LoaderSourceStep
Load XML data
LockProvider - Interface in org.jooq
A query part (mostly a Select statement) providing the possibility of locking tables, rows using a FOR UPDATE clause
log(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
log(Number, int) - Static method in class org.jooq.impl.Factory
Get the log(field, base) function
log(Field<? extends Number>, int) - Static method in class org.jooq.impl.Factory
Get the log(field, base) function This renders the log function where available: log([field]) ... or simulates it elsewhere (in most RDBMS) using the natural logarithm: ln([field]) / ln([base])
LoggerListener - Class in org.jooq.tools
A default ExecuteListener that just logs events to java.util.logging, log4j, or slf4j using the JooqLogger
LoggerListener() - Constructor for class org.jooq.tools.LoggerListener
 
LONG - Static variable in class org.jooq.util.oracle.OracleDataType
 
LONGBINARY - Static variable in class org.jooq.util.sybase.SybaseDataType
 
LONGBLOB - Static variable in class org.jooq.util.h2.H2DataType
 
LONGBLOB - Static variable in class org.jooq.util.mysql.MySQLDataType
 
LONGBYTE - Static variable in class org.jooq.util.ingres.IngresDataType
 
LONGNVARCHAR - Static variable in class org.jooq.impl.SQLDataType
The Types.LONGNVARCHAR type
LONGNVARCHAR - Static variable in class org.jooq.util.ingres.IngresDataType
 
LONGNVARCHAR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
LONGRAW - Static variable in class org.jooq.util.oracle.OracleDataType
 
LONGSYSNAME - Static variable in class org.jooq.util.ase.ASEDataType
 
LONGTEXT - Static variable in class org.jooq.util.h2.H2DataType
 
LONGTEXT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
longValue() - Method in class org.jooq.tools.unsigned.UByte
 
longValue() - Method in class org.jooq.tools.unsigned.UInteger
 
longValue() - Method in class org.jooq.tools.unsigned.ULong
 
longValue() - Method in class org.jooq.tools.unsigned.UShort
 
longValue() - Method in class org.jooq.types.DayToSecond
 
longValue() - Method in interface org.jooq.types.Interval
 
longValue() - Method in class org.jooq.types.YearToMonth
 
LONGVARBINARY - Static variable in class org.jooq.impl.SQLDataType
The Types.LONGVARBINARY type
LONGVARBINARY - Static variable in class org.jooq.util.h2.H2DataType
 
LONGVARBINARY - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
LONGVARBINARY - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
LONGVARBIT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
LONGVARCHAR - Static variable in class org.jooq.impl.SQLDataType
The Types.LONGVARCHAR type
LONGVARCHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
LONGVARCHAR - Static variable in class org.jooq.util.db2.DB2DataType
 
LONGVARCHAR - Static variable in class org.jooq.util.derby.DerbyDataType
 
LONGVARCHAR - Static variable in class org.jooq.util.h2.H2DataType
 
LONGVARCHAR - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
LONGVARCHAR - Static variable in class org.jooq.util.ingres.IngresDataType
 
LONGVARCHAR - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
LONGVARCHAR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
LONGVARCHARFORBITDATA - Static variable in class org.jooq.util.derby.DerbyDataType
 
lower() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lower(String) - Static method in class org.jooq.impl.Factory
Get the lower(field) function
lower(Field<String>) - Static method in class org.jooq.impl.Factory
Get the lower(field) function This renders the lower function in all dialects: lower([field])
lpad(Field<? extends Number>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lpad(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lpad(Field<? extends Number>, Field<String>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lpad(int, char) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
lpad(Field<String>, int) - Static method in class org.jooq.impl.Factory
Get the lpad(field, length) function
lpad(Field<String>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the lpad(field, length) function This renders the lpad function where available: lpad([field], [length]) ... or simulates it elsewhere using concat, repeat, and length, which may be simulated as well, depending on the RDBMS: concat(repeat(' ', [length] - length([field])), [field])
lpad(Field<String>, int, char) - Static method in class org.jooq.impl.Factory
Get the lpad(field, length, character) function
lpad(Field<String>, int, String) - Static method in class org.jooq.impl.Factory
Get the lpad(field, length, character) function
lpad(Field<String>, Field<? extends Number>, Field<String>) - Static method in class org.jooq.impl.Factory
Get the lpad(field, length, character) function This renders the lpad function where available: lpad([field], [length]) ... or simulates it elsewhere using concat, repeat, and length, which may be simulated as well, depending on the RDBMS: concat(repeat([character], [length] - length([field])), [field])
ltrim() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
ltrim(String) - Static method in class org.jooq.impl.Factory
Get the ltrim(field) function
ltrim(Field<String>) - Static method in class org.jooq.impl.Factory
Get the ltrim(field) function This renders the ltrim function in all dialects: ltrim([field])

M

map(Schema) - Method in class org.jooq.SchemaMapping
Deprecated. Apply mapping to a given schema
map(Table<?>) - Method in class org.jooq.SchemaMapping
Deprecated. Apply mapping to a given table
MappedSchema - Class in org.jooq.conf
Java class for MappedSchema complex type.
MappedSchema() - Constructor for class org.jooq.conf.MappedSchema
 
MappedTable - Class in org.jooq.conf
Java class for MappedTable complex type.
MappedTable() - Constructor for class org.jooq.conf.MappedTable
 
MappingException - Exception in org.jooq.exception
An error occurred while fetching data into a user defined Java object with any of these methods: ResultQuery.fetchInto(Class) Cursor.fetchInto(Class) Result.into(Class) Record.into(Class) ... or when copying data into a Record with any of these methods FactoryOperations.newRecord(org.jooq.Table, Object) Record.from(Object)
MappingException(String) - Constructor for exception org.jooq.exception.MappingException
Constructor for MappingException.
MappingException(String, Throwable) - Constructor for exception org.jooq.exception.MappingException
Constructor for MappingException.
MasterDataType<T> - Interface in org.jooq
A type holding master data.
max() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
max(Field<T>) - Static method in class org.jooq.impl.Factory
Get the max value over a field: max(field)
MAX_VALUE - Static variable in class org.jooq.tools.unsigned.UByte
A constant holding the maximum value an unsigned byte can have, 28-1.
MAX_VALUE - Static variable in class org.jooq.tools.unsigned.UInteger
A constant holding the maximum value an unsigned int can have, 232-1.
MAX_VALUE - Static variable in class org.jooq.tools.unsigned.ULong
A constant holding the maximum value an unsigned long can have, 264-1.
MAX_VALUE - Static variable in class org.jooq.tools.unsigned.UShort
A constant holding the maximum value an unsigned short can have, 216-1.
MAX_VALUE_LONG - Static variable in class org.jooq.tools.unsigned.ULong
A constant holding the maximum value + 1 an signed long can have, 263.
maxDistinct(Field<T>) - Static method in class org.jooq.impl.Factory
Get the max value over a field: max(distinct field)
maxOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
md5(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific MD5() function
md5(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific MD5() function
median() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
median(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the median over a numeric field: median(field) This is known to be supported in any of these RDBMS: HSQLDB Oracle Sybase SQL Anywhere
MEDIUMBLOB - Static variable in class org.jooq.util.h2.H2DataType
 
MEDIUMBLOB - Static variable in class org.jooq.util.mysql.MySQLDataType
 
MEDIUMINT - Static variable in class org.jooq.util.h2.H2DataType
 
MEDIUMINT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
MEDIUMINT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
MEDIUMINTUNSIGNED - Static variable in class org.jooq.util.mysql.MySQLDataType
 
MEDIUMTEXT - Static variable in class org.jooq.util.h2.H2DataType
 
MEDIUMTEXT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
Merge<R extends Record> - Interface in org.jooq
A Query that can merge data in the database.
MergeFinalStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
mergeInto(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DSL merge statement.
mergeInto(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DSL merge statement.
MergeMatchedDeleteStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeMatchedSetMoreStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeMatchedSetStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeMatchedStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeMatchedWhereStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeNotMatchedSetMoreStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeNotMatchedSetStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeNotMatchedStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeNotMatchedValuesStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeNotMatchedWhereStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeOnConditionStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeOnStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
MergeUsingStep<R extends Record> - Interface in org.jooq
This type is used for the Merge's DSL API.
min() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
min(Field<T>) - Static method in class org.jooq.impl.Factory
Get the min value over a field: min(field)
MIN_VALUE - Static variable in class org.jooq.tools.unsigned.UByte
A constant holding the minimum value an unsigned byte can have, 0.
MIN_VALUE - Static variable in class org.jooq.tools.unsigned.UInteger
A constant holding the minimum value an unsigned int can have, 0.
MIN_VALUE - Static variable in class org.jooq.tools.unsigned.ULong
A constant holding the minimum value an unsigned long can have, 0.
MIN_VALUE - Static variable in class org.jooq.tools.unsigned.UShort
A constant holding the minimum value an unsigned short can have, 0.
minDistinct(Field<T>) - Static method in class org.jooq.impl.Factory
Get the min value over a field: min(distinct field)
minOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
minute(Date) - Static method in class org.jooq.impl.Factory
Get the minute part of a date This is the same as calling Factory.extract(java.util.Date, DatePart) with DatePart.MINUTE
minute(Field<? extends Date>) - Static method in class org.jooq.impl.Factory
Get the minute part of a date This is the same as calling Factory.extract(Field, DatePart) with DatePart.MINUTE
mod(Number) - Method in interface org.jooq.Field
An arithmetic expression getting the modulo of this divided by value This renders the modulo operation where available: [this] % [value] ... or the modulo function elsewhere: mod([this], [value])
mod(Field<? extends Number>) - Method in interface org.jooq.Field
An arithmetic expression getting the modulo of this divided by value This renders the modulo operation where available: [this] % [value] ... or the modulo function elsewhere: mod([this], [value])
MONETARY - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
MONEY - Static variable in class org.jooq.util.ase.ASEDataType
 
MONEY - Static variable in class org.jooq.util.postgres.PostgresDataType
 
MONEY - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
MONEY - Static variable in class org.jooq.util.sybase.SybaseDataType
 
month(Date) - Static method in class org.jooq.impl.Factory
Get the month part of a date This is the same as calling Factory.extract(java.util.Date, DatePart) with DatePart.MONTH
month(Field<? extends Date>) - Static method in class org.jooq.impl.Factory
Get the month part of a date This is the same as calling Factory.extract(Field, DatePart) with DatePart.MONTH
mul(Number) - Method in interface org.jooq.Field
An arithmetic expression multiplying this with value If this is a numeric field, then the result is a number of the same type as this field.
mul(Field<? extends Number>) - Method in interface org.jooq.Field
An arithmetic expression multiplying this with value If this is a numeric field, then the result is a number of the same type as this field.
mul(Field<? extends Number>) - Method in class org.jooq.impl.CustomField
 
MySQLDataType<T> - Class in org.jooq.util.mysql
Supported data types for the SQLDialect.MYSQL dialect
MySQLFactory - Class in org.jooq.util.mysql
A SQLDialect.MYSQL specific factory
MySQLFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.mysql.MySQLFactory
Deprecated. - 2.0.5 - Use MySQLFactory.MySQLFactory(Connection, Settings) instead
MySQLFactory(Connection, Settings) - Constructor for class org.jooq.util.mysql.MySQLFactory
Create a factory with connection and a settings configured
MySQLFactory(Connection) - Constructor for class org.jooq.util.mysql.MySQLFactory
Create a factory with connection

N

NAME - Static variable in class org.jooq.util.postgres.PostgresDataType
 
namedParams() - Method in interface org.jooq.RenderContext
Whether bind variables should be rendered as named parameters:
  :1, :2, :custom_name or as JDBC bind variables
  ?
namedParams(boolean) - Method in interface org.jooq.RenderContext
Set the new context value for RenderContext.namedParams()
NamedQueryPart - Interface in org.jooq
A common interface for query parts that have a name.
NamedTypeProviderQueryPart<T> - Interface in org.jooq
Any object providing a type.
NATIONALCHARACTERLARGEOBJECT - Static variable in class org.jooq.util.ingres.IngresDataType
 
NATIONALCHARACTERVARYING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
NATIONALCHARVARYING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
NATIVECHARACTER - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
NATURAL - Static variable in class org.jooq.util.oracle.OracleDataType
 
naturalJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL JOIN a table to the last table added to the FROM clause using Table.naturalJoin(TableLike) Natural joins are supported by most RDBMS.
naturalJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL JOIN a table to the last table added to the FROM clause using Table.naturalJoin(String) Natural joins are supported by most RDBMS.
naturalJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL JOIN a table to the last table added to the FROM clause using Table.naturalJoin(String, Object...)
naturalJoin(TableLike<?>) - Method in interface org.jooq.Table
NATURAL JOIN a table to this table.
naturalJoin(String) - Method in interface org.jooq.Table
NATURAL JOIN a table to this table.
naturalJoin(String, Object...) - Method in interface org.jooq.Table
NATURAL JOIN a table to this table.
naturalLeftOuterJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL LEFT OUTER JOIN a table to the last table added to the FROM clause using Table.naturalLeftOuterJoin(TableLike) Natural joins are supported by most RDBMS.
naturalLeftOuterJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL LEFT OUTER JOIN a table to the last table added to the FROM clause using Table.naturalLeftOuterJoin(String) Natural joins are supported by most RDBMS.
naturalLeftOuterJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL LEFT OUTER JOIN a table to the last table added to the FROM clause using Table.naturalLeftOuterJoin(String, Object...)
naturalLeftOuterJoin(TableLike<?>) - Method in interface org.jooq.Table
NATURAL LEFT OUTER JOIN a table to this table.
naturalLeftOuterJoin(String) - Method in interface org.jooq.Table
NATURAL LEFT OUTER JOIN a table to this table.
naturalLeftOuterJoin(String, Object...) - Method in interface org.jooq.Table
NATURAL LEFT OUTER JOIN a table to this table.
NATURALN - Static variable in class org.jooq.util.oracle.OracleDataType
 
naturalRightOuterJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL RIGHT OUTER JOIN a table to the last table added to the FROM clause using Table.naturalRightOuterJoin(TableLike) Natural joins are supported by most RDBMS.
naturalRightOuterJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL RIGHT OUTER JOIN a table to the last table added to the FROM clause using Table.naturalRightOuterJoin(String) Natural joins are supported by most RDBMS.
naturalRightOuterJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to NATURAL RIGHT OUTER JOIN a table to the last table added to the FROM clause using Table.naturalRightOuterJoin(String, Object...)
naturalRightOuterJoin(TableLike<?>) - Method in interface org.jooq.Table
NATURAL RIGHT OUTER JOIN a table to this table.
naturalRightOuterJoin(String) - Method in interface org.jooq.Table
NATURAL RIGHT OUTER JOIN a table to this table.
naturalRightOuterJoin(String, Object...) - Method in interface org.jooq.Table
NATURAL RIGHT OUTER JOIN a table to this table.
NCHAR - Static variable in class org.jooq.impl.SQLDataType
The Types.NCHAR type
NCHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
NCHAR - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
NCHAR - Static variable in class org.jooq.util.h2.H2DataType
 
NCHAR - Static variable in class org.jooq.util.ingres.IngresDataType
 
NCHAR - Static variable in class org.jooq.util.oracle.OracleDataType
 
NCHAR - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
NCHAR - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
NCHAR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
NCHARLARGEOBJECT - Static variable in class org.jooq.util.ingres.IngresDataType
 
NCHARVARYING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
NCLOB - Static variable in class org.jooq.impl.SQLDataType
The Types.NCLOB type
NCLOB - Static variable in class org.jooq.util.h2.H2DataType
 
NCLOB - Static variable in class org.jooq.util.ingres.IngresDataType
 
NCLOB - Static variable in class org.jooq.util.oracle.OracleDataType
 
neg() - Method in interface org.jooq.Field
Negate this field to get its negative value.
neg() - Method in class org.jooq.types.DayToSecond
 
neg() - Method in interface org.jooq.types.Interval
Negate the interval (change its sign)
neg() - Method in class org.jooq.types.YearToMonth
 
newRecord(UDT<R>) - Method in interface org.jooq.FactoryOperations
Create a new attached UDTRecord.
newRecord(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new Record that can be inserted into the corresponding table.
newRecord(Table<R>, Object) - Method in interface org.jooq.FactoryOperations
Create a new pre-filled Record that can be inserted into the corresponding table.
newRecord(UDT<R>) - Method in class org.jooq.impl.Factory
Create a new attached UDTRecord.
newRecord(Table<R>) - Method in class org.jooq.impl.Factory
Create a new Record that can be inserted into the corresponding table.
newRecord(Table<R>, Object) - Method in class org.jooq.impl.Factory
Create a new pre-filled Record that can be inserted into the corresponding table.
newRecord() - Method in interface org.jooq.InsertQuery
Adds a new Record to the insert statement for multi-record inserts Calling this method will cause subsequent calls to StoreQuery.addValue(Field, Object) (and similar) to fill the next record.
newRecord() - Method in interface org.jooq.InsertSetMoreStep
Add an additional record to the INSERT statement
next(R) - Method in interface org.jooq.RecordHandler
A callback method indicating that the next record has been fetched.
nextAlias() - Method in interface org.jooq.RenderContext
Return a new alias that is unique for the scope of one query.
nextIndex() - Method in interface org.jooq.Context
Get the next bind index.
nextval(Sequence<T>) - Method in interface org.jooq.FactoryOperations
Convenience method to fetch the NEXTVAL for a sequence directly from this Factory's underlying JDBC Connection
nextval(Sequence<T>) - Method in class org.jooq.impl.Factory
Convenience method to fetch the NEXTVAL for a sequence directly from this Factory's underlying JDBC Connection
nextval() - Method in class org.jooq.impl.SequenceImpl
 
nextval() - Method in interface org.jooq.Sequence
Increment the sequence and get the next value
NO_MAPPING - Static variable in class org.jooq.SchemaMapping
Deprecated. - 2.0.5 - Do not reuse this SchemaMapping!
normalise(String) - Static method in class org.jooq.impl.FieldTypeHelper
 
not() - Method in interface org.jooq.Condition
Invert this condition
notBetween(T, T) - Method in interface org.jooq.Field
Create a condition to check this field against some bounds SQL: this not between minValue and maxValue
notBetween(Field<T>, Field<T>) - Method in interface org.jooq.Field
Create a condition to check this field against some bounds SQL: this not between minValue and maxValue
notEqual(T) - Method in interface org.jooq.Field
this !
notEqual(Field<T>) - Method in interface org.jooq.Field
this !
notEqual(Select<?>) - Method in interface org.jooq.Field
this !
notEqualAll(Select<?>) - Method in interface org.jooq.Field
this !
notEqualAll(T...) - Method in interface org.jooq.Field
this !
notEqualAll(Field<T[]>) - Method in interface org.jooq.Field
this !
notEqualAny(Select<?>) - Method in interface org.jooq.Field
this !
notEqualAny(T...) - Method in interface org.jooq.Field
this !
notEqualAny(Field<T[]>) - Method in interface org.jooq.Field
this !
notEqualIgnoreCase(String) - Method in interface org.jooq.Field
lower(this) !
notEqualIgnoreCase(Field<String>) - Method in interface org.jooq.Field
lower(this) !
notEqualSome(Select<?>) - Method in interface org.jooq.Field
Deprecated. - 2.0.2 - Use Field.notEqualAny(Select) instead
notExists(Select<?>) - Static method in class org.jooq.impl.Factory
Create a not exists condition.
notIn(Collection<T>) - Method in interface org.jooq.Field
Create a condition to check this field against several values Note that if any of the passed values is NULL, then the condition will be NULL (or false, depending on the dialect) as well.
notIn(T...) - Method in interface org.jooq.Field
Create a condition to check this field against several values Note that if any of the passed values is NULL, then the condition will be NULL (or false, depending on the dialect) as well.
notIn(Field<?>...) - Method in interface org.jooq.Field
Create a condition to check this field against several values Note that if any of the passed values is NULL, then the condition will be NULL (or false, depending on the dialect) as well.
notIn(Select<?>) - Method in interface org.jooq.Field
Create a condition to check this field against a subquery Note that the subquery must return exactly one field.
notLike(Field<String>) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this not like value
notLike(Field<String>, char) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this not like value escape 'e'
notLike(String) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this not like value
notLike(String, char) - Method in interface org.jooq.Field
Create a condition to pattern-check this field against a value SQL: this not like value escape 'e'
noWait() - Method in interface org.jooq.SelectForUpdateWaitStep
Add a WAIT clause to the FOR UPDATE clause at the end of the query.
noWait() - Method in interface org.jooq.SimpleSelectForUpdateWaitStep
Add a WAIT clause to the FOR UPDATE clause at the end of the query.
NTEXT - Static variable in class org.jooq.util.h2.H2DataType
 
NTEXT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
NTEXT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
ntile(int) - Static method in class org.jooq.impl.Factory
The ntile([number]) over ([analytic clause]) function.
NULL - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
NULL_CHARACTER - Static variable in class org.jooq.tools.csv.CSVParser
This is the "null" character - if a value is set to this then it is ignored.
nullif(T) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
nullif(Field<T>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
nullif(T, T) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NULLIF(value, other) function
nullif(T, Field<T>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NULLIF(value, other) function
nullif(Field<T>, T) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NULLIF(value, other) function
nullif(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NULLIF(value, other) function Returns the dialect's equivalent to NULLIF: Oracle NULLIF
nullsFirst() - Method in interface org.jooq.SortField
Add a NULLS FIRST clause to this sort field
nullsLast() - Method in interface org.jooq.SortField
Add a NULLS LAST clause to this sort field
NUMBER - Static variable in class org.jooq.util.h2.H2DataType
 
NUMBER - Static variable in class org.jooq.util.oracle.OracleDataType
 
NUMERIC - Static variable in class org.jooq.impl.SQLDataType
The Types.NUMERIC type
NUMERIC - Static variable in class org.jooq.util.ase.ASEDataType
 
NUMERIC - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
NUMERIC - Static variable in class org.jooq.util.derby.DerbyDataType
 
NUMERIC - Static variable in class org.jooq.util.h2.H2DataType
 
NUMERIC - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
NUMERIC - Static variable in class org.jooq.util.ingres.IngresDataType
 
NUMERIC - Static variable in class org.jooq.util.oracle.OracleDataType
 
NUMERIC - Static variable in class org.jooq.util.postgres.PostgresDataType
 
NUMERIC - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
NUMERIC - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
NUMERIC - Static variable in class org.jooq.util.sybase.SybaseDataType
 
NVARCHAR - Static variable in class org.jooq.impl.SQLDataType
The Types.NVARCHAR type
NVARCHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
NVARCHAR - Static variable in class org.jooq.util.h2.H2DataType
 
NVARCHAR - Static variable in class org.jooq.util.ingres.IngresDataType
 
NVARCHAR - Static variable in class org.jooq.util.oracle.OracleDataType
 
NVARCHAR - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
NVARCHAR - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
NVARCHAR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
NVARCHAR2 - Static variable in class org.jooq.util.h2.H2DataType
 
NVARCHAR2 - Static variable in class org.jooq.util.oracle.OracleDataType
 
nvl(T) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
nvl(Field<T>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
nvl(T, T) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL(value, defaultValue) function
nvl(T, Field<T>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL(value, defaultValue) function
nvl(Field<T>, T) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL(value, defaultValue) function
nvl(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL(value, defaultValue) function Returns the dialect's equivalent to NVL: DB2 nvl2(Z, Z) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
nvl2(Field<Z>, Field<Z>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
nvl2(Field<?>, Z, Z) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
nvl2(Field<?>, Z, Field<Z>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
nvl2(Field<?>, Field<Z>, Z) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
nvl2(Field<?>, Field<Z>, Field<Z>) - Static method in class org.jooq.impl.Factory
Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function Returns the dialect's equivalent to NVL2: Oracle NVL2 Other dialects: CASE WHEN [value] IS NULL THEN [valueIfNull] ELSE [valueIfNotNull] END

O

OBJECT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
octetLength() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
octetLength(String) - Static method in class org.jooq.impl.Factory
Get the octet_length(field) function This translates into any dialect
octetLength(Field<String>) - Static method in class org.jooq.impl.Factory
Get the octet_length(field) function This translates into any dialect
of(Field<?>...) - Method in interface org.jooq.SelectForUpdateOfStep
Add an OF clause to the FOR UPDATE clause at the end of the query.
of(Collection<Field<?>>) - Method in interface org.jooq.SelectForUpdateOfStep
Add an OF clause to the FOR UPDATE clause at the end of the query.
of(Table<?>...) - Method in interface org.jooq.SelectForUpdateOfStep
Add an OF clause to the FOR UPDATE clause at the end of the query.
of(Field<?>...) - Method in interface org.jooq.SimpleSelectForUpdateOfStep
Add an OF clause to the FOR UPDATE clause at the end of the query.
of(Collection<Field<?>>) - Method in interface org.jooq.SimpleSelectForUpdateOfStep
Add an OF clause to the FOR UPDATE clause at the end of the query.
of(Table<?>...) - Method in interface org.jooq.SimpleSelectForUpdateOfStep
Add an OF clause to the FOR UPDATE clause at the end of the query.
offset(int) - Method in interface org.jooq.SelectOffsetStep
Add an OFFSET clause to the query If there is no LIMIT ..
offset(Param<Integer>) - Method in interface org.jooq.SelectOffsetStep
Add an OFFSET clause to the query using a named parameter If there is no LIMIT ..
offset(int) - Method in interface org.jooq.SimpleSelectOffsetStep
Add an OFFSET clause to the query If there is no LIMIT ..
offset(Param<Integer>) - Method in interface org.jooq.SimpleSelectOffsetStep
Add an OFFSET clause to the query using a named parameter If there is no LIMIT ..
OID - Static variable in class org.jooq.util.h2.H2DataType
 
OID - Static variable in class org.jooq.util.postgres.PostgresDataType
 
OIDVECTOR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
on(Condition...) - Method in interface org.jooq.DivideByOnStep
Add a division condition to the DIVIDE BY clause
on(String) - Method in interface org.jooq.DivideByOnStep
Add a division condition to the DIVIDE BY clause NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(String, Object...) - Method in interface org.jooq.DivideByOnStep
Add a division condition to the DIVIDE BY clause NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(Condition...) - Method in interface org.jooq.MergeOnStep
Provide join conditions and proceed to the next step
on(String) - Method in interface org.jooq.MergeOnStep
Provide join conditions and proceed to the next step NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(String, Object...) - Method in interface org.jooq.MergeOnStep
Provide join conditions and proceed to the next step NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(Field<T>) - Method in interface org.jooq.PivotForStep
Add a list of fields to the PIVOT clause.
on(Condition...) - Method in interface org.jooq.SelectOnStep
Add an ON clause to the previous JOIN
on(String) - Method in interface org.jooq.SelectOnStep
Add an ON clause to the previous JOIN NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(String, Object...) - Method in interface org.jooq.SelectOnStep
Add an ON clause to the previous JOIN NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(Condition...) - Method in interface org.jooq.TableOnStep
Add an ON clause to the JOIN
on(String) - Method in interface org.jooq.TableOnStep
Add an ON clause to the JOIN NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(String, Object...) - Method in interface org.jooq.TableOnStep
Add an ON clause to the JOIN NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
on(String) - Static method in class org.jooq.tools.reflect.Reflect
Wrap a class name.
on(Class<?>) - Static method in class org.jooq.tools.reflect.Reflect
Wrap a class.
on(Object) - Static method in class org.jooq.tools.reflect.Reflect
Wrap an object.
onDuplicateKeyError() - Method in interface org.jooq.LoaderOptionsStep
Instruct the Loader to cause an error in loading if there are any duplicate records.
onDuplicateKeyIgnore() - Method in interface org.jooq.LoaderOptionsStep
Instruct the Loader to skip duplicate records if the main unique key's value is already in the database.
onDuplicateKeyUpdate() - Method in interface org.jooq.InsertOnDuplicateStep
Add an ON DUPLICATE KEY UPDATE clause to this insert query.
onDuplicateKeyUpdate(boolean) - Method in interface org.jooq.InsertQuery
Whether a ON DUPLICATE KEY UPDATE clause should be added to this INSERT statement.
onDuplicateKeyUpdate() - Method in interface org.jooq.LoaderOptionsStep
Instruct the Loader to update duplicate records if the main unique key's value is already in the database.
one() - Static method in class org.jooq.impl.Factory
A 1 literal.
onErrorAbort() - Method in interface org.jooq.LoaderOptionsStep
Instruct the Loader to abort loading after the first error that might occur when inserting a record.
onErrorIgnore() - Method in interface org.jooq.LoaderOptionsStep
Instruct the Loader to ignore any errors that might occur when inserting a record.
onKey() - Method in interface org.jooq.SelectOnStep
Join the previous table on a non-ambiguous foreign key relationship between the two joined tables.
onKey(TableField<?, ?>...) - Method in interface org.jooq.SelectOnStep
Join the previous table on a non-ambiguous foreign key relationship between the two joined tables.
onKey(ForeignKey<?, ?>) - Method in interface org.jooq.SelectOnStep
Join the table on a non-ambiguous foreign key relationship between the two joined tables.
onKey() - Method in interface org.jooq.TableOnStep
Join the table on a non-ambiguous foreign key relationship between the two joined tables.
onKey(TableField<?, ?>...) - Method in interface org.jooq.TableOnStep
Join the table on a non-ambiguous foreign key relationship between the two joined tables.
onKey(ForeignKey<?, ?>) - Method in interface org.jooq.TableOnStep
Join the table on a non-ambiguous foreign key relationship between the two joined tables.
Operator - Enum in org.jooq
An operator used for combining conditions
or(Condition) - Method in interface org.jooq.Condition
Combine this condition with another one using the Operator.OR operator.
or(String) - Method in interface org.jooq.Condition
Combine this condition with another one using the Operator.OR operator.
or(String, Object...) - Method in interface org.jooq.Condition
Combine this condition with another one using the Operator.OR operator.
or(Condition) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator
or(String) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
or(String, Object...) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
or(Condition) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator.
or(String) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator.
or(String, Object...) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator.
or(Condition) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String, Object...) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(Condition) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String, Object...) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(Condition) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String, Object...) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(Condition) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String, Object...) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(Condition) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(String, Object...) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator and proceed to the next step.
or(Condition) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator.
or(String) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator.
or(String, Object...) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator.
or(Condition) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator
or(String) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
or(String, Object...) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with another one using the Operator.OR operator NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
OracleDataType<T> - Class in org.jooq.util.oracle
Supported data types for the SQLDialect.ORACLE dialect
OracleFactory - Class in org.jooq.util.oracle
A SQLDialect.ORACLE specific factory
OracleFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.oracle.OracleFactory
Deprecated. - 2.0.5 - Use OracleFactory.OracleFactory(Connection, Settings) instead
OracleFactory(Connection, Settings) - Constructor for class org.jooq.util.oracle.OracleFactory
Create a factory with connection and a settings configured
OracleFactory(Connection) - Constructor for class org.jooq.util.oracle.OracleFactory
Create a factory with connection
orderBy(Field<?>...) - Method in interface org.jooq.GroupConcatOrderByStep
Add an ORDER BY clause to the query
orderBy(SortField<?>...) - Method in interface org.jooq.GroupConcatOrderByStep
Add an ORDER BY clause to the query
orderBy(Collection<SortField<?>>) - Method in interface org.jooq.GroupConcatOrderByStep
Add an ORDER BY clause to the query
orderBy(Field<?>...) - Method in interface org.jooq.SelectOrderByStep
Add an ORDER BY clause to the query
orderBy(SortField<?>...) - Method in interface org.jooq.SelectOrderByStep
Add an ORDER BY clause to the query
orderBy(Collection<SortField<?>>) - Method in interface org.jooq.SelectOrderByStep
Add an ORDER BY clause to the query
orderBy(int...) - Method in interface org.jooq.SelectOrderByStep
Add an ORDER BY clause to the query Indexes start at 1 in SQL!
orderBy(Field<?>...) - Method in interface org.jooq.SimpleSelectOrderByStep
Add an ORDER BY clause to the query
orderBy(SortField<?>...) - Method in interface org.jooq.SimpleSelectOrderByStep
Add an ORDER BY clause to the query
orderBy(Collection<SortField<?>>) - Method in interface org.jooq.SimpleSelectOrderByStep
Add an ORDER BY clause to the query
orderBy(int...) - Method in interface org.jooq.SimpleSelectOrderByStep
Add an ORDER BY clause to the query Indexes start at 1 in SQL!
orderBy(Field<?>...) - Method in interface org.jooq.WindowOrderByStep
Add an ORDER BY clause to the window function.
orderBy(SortField<?>...) - Method in interface org.jooq.WindowOrderByStep
Add an ORDER BY clause to the window function.
orderBy(Collection<SortField<?>>) - Method in interface org.jooq.WindowOrderByStep
Add an ORDER BY clause to the window function.
OrderedAggregateFunction<T> - Interface in org.jooq
An ordered aggregate function.
OrderProvider - Interface in org.jooq
A query that can be ordered and limited
orExists(Select<?>) - Method in interface org.jooq.Condition
Combine this condition with an EXISTS clause using the Operator.OR operator.
orExists(Select<?>) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator
orExists(Select<?>) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator.
orExists(Select<?>) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator and proceed to the next step.
orExists(Select<?>) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator and proceed to the next step.
orExists(Select<?>) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator and proceed to the next step.
orExists(Select<?>) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator and proceed to the next step.
orExists(Select<?>) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator and proceed to the next step.
orExists(Select<?>) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator.
orExists(Select<?>) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with an EXISTS clause using the Operator.OR operator
org.jooq - package org.jooq
 
org.jooq.conf - package org.jooq.conf
 
org.jooq.exception - package org.jooq.exception
 
org.jooq.impl - package org.jooq.impl
 
org.jooq.tools - package org.jooq.tools
 
org.jooq.tools.csv - package org.jooq.tools.csv
 
org.jooq.tools.json - package org.jooq.tools.json
 
org.jooq.tools.reflect - package org.jooq.tools.reflect
 
org.jooq.tools.unsigned - package org.jooq.tools.unsigned
 
org.jooq.types - package org.jooq.types
 
org.jooq.util.ase - package org.jooq.util.ase
 
org.jooq.util.cubrid - package org.jooq.util.cubrid
 
org.jooq.util.db2 - package org.jooq.util.db2
 
org.jooq.util.derby - package org.jooq.util.derby
 
org.jooq.util.h2 - package org.jooq.util.h2
 
org.jooq.util.hsqldb - package org.jooq.util.hsqldb
 
org.jooq.util.ingres - package org.jooq.util.ingres
 
org.jooq.util.mysql - package org.jooq.util.mysql
 
org.jooq.util.oracle - package org.jooq.util.oracle
 
org.jooq.util.postgres - package org.jooq.util.postgres
 
org.jooq.util.sqlite - package org.jooq.util.sqlite
 
org.jooq.util.sqlserver - package org.jooq.util.sqlserver
 
org.jooq.util.sybase - package org.jooq.util.sybase
 
ORGAPACHEDERBYCATALOGINDEXDESCRIPTOR - Static variable in class org.jooq.util.derby.DerbyDataType
 
ORGAPACHEDERBYCATALOGTYPEDESCRIPTOR - Static variable in class org.jooq.util.derby.DerbyDataType
 
orNot(Condition) - Method in interface org.jooq.Condition
Combine this condition with a negated other one using the Operator.OR operator.
orNot(Condition) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator
orNot(Condition) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator.
orNot(Condition) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator and proceed to the next step.
orNot(Condition) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator and proceed to the next step.
orNot(Condition) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator and proceed to the next step.
orNot(Condition) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator and proceed to the next step.
orNot(Condition) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator and proceed to the next step.
orNot(Condition) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator.
orNot(Condition) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with a negated other one using the Operator.OR operator
orNotExists(Select<?>) - Method in interface org.jooq.Condition
Combine this condition with a NOT EXIST clause using the Operator.OR operator.
orNotExists(Select<?>) - Method in interface org.jooq.DeleteConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator
orNotExists(Select<?>) - Method in interface org.jooq.DivideByOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator.
orNotExists(Select<?>) - Method in interface org.jooq.MergeOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator and proceed to the next step.
orNotExists(Select<?>) - Method in interface org.jooq.SelectConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator and proceed to the next step.
orNotExists(Select<?>) - Method in interface org.jooq.SelectHavingConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator and proceed to the next step.
orNotExists(Select<?>) - Method in interface org.jooq.SelectOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator and proceed to the next step.
orNotExists(Select<?>) - Method in interface org.jooq.SimpleSelectConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator and proceed to the next step.
orNotExists(Select<?>) - Method in interface org.jooq.TableOnConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator.
orNotExists(Select<?>) - Method in interface org.jooq.UpdateConditionStep
Combine the currently assembled conditions with a NOT EXISTS clause using the Operator.OR operator
OTHER - Static variable in class org.jooq.impl.SQLDataType
The Types.OTHER type
OTHER - Static variable in class org.jooq.util.h2.H2DataType
 
OTHER - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
otherwise(T) - Method in interface org.jooq.CaseConditionStep
Add an else clause to the already constructed case statement
otherwise(Field<T>) - Method in interface org.jooq.CaseConditionStep
Add an else clause to the already constructed case statement
otherwise(T) - Method in interface org.jooq.CaseWhenStep
Add an else clause to the already constructed case statement
otherwise(Field<T>) - Method in interface org.jooq.CaseWhenStep
Add an else clause to the already constructed case statement
output - Variable in class org.jooq.conf.MappedSchema
 
output - Variable in class org.jooq.conf.MappedTable
 
over() - Method in interface org.jooq.AggregateFunction
Turn this aggregate function into a window function, for example MAX(ID) OVER (PARTITION BY 1) Window functions are supported in DB2, Postgres, Oracle, SQL Server and Sybase.
over() - Method in interface org.jooq.WindowOverStep
Add an OVER clause

P

Package - Interface in org.jooq
A container for stored procedures and functions This is only supported in the SQLDialect.ORACLE dialect
PackageImpl - Class in org.jooq.impl
A default implementation for packages (containers of stored procedures and functions) Currently, this is only supported for the SQLDialect.ORACLE dialect.
PackageImpl(String, Schema) - Constructor for class org.jooq.impl.PackageImpl
 
param(String) - Static method in class org.jooq.impl.Factory
Create a named parameter with a generic type (Object / SQLDataType.OTHER) and no initial value.
param(String, Class<? extends T>) - Static method in class org.jooq.impl.Factory
Create a named parameter with a defined type and no initial value.
param(String, DataType<T>) - Static method in class org.jooq.impl.Factory
Create a named parameter with a defined type and no initial value.
param(String, T) - Static method in class org.jooq.impl.Factory
Create a named parameter with an initial value.
Param<T> - Interface in org.jooq
A named parameter
Parameter<T> - Interface in org.jooq
A parameter to a stored procedure or function.
parse(String) - Method in class org.jooq.util.postgres.PGobjectParser
Tokenize a PGObject input string
parseLine(String) - Method in class org.jooq.tools.csv.CSVParser
 
parseLineMulti(String) - Method in class org.jooq.tools.csv.CSVParser
 
partitionBy(Field<?>...) - Method in interface org.jooq.WindowPartitionByStep
Add a PARTITION BY clause to the window functions.
partitionByOne() - Method in interface org.jooq.WindowPartitionByStep
Add a PARTITION BY 1 clause to the window functions, where such a clause is required by the syntax of an RDBMS.
password(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific PASSWORD() function
password(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific PASSWORD() function
peekAlias() - Method in interface org.jooq.RenderContext
Peek the next alias that will be generated by RenderContext.nextAlias()
peekIndex() - Method in interface org.jooq.Context
Peek the next bind index.
percentRank() - Static method in class org.jooq.impl.Factory
The precent_rank() over ([analytic clause]) function.
PGIntervalConverter - Class in org.jooq.util.postgres
A converter for org.postgresql.util.PGInterval Postgres returns an undisclosed internal type for intervals.
PGIntervalConverter() - Constructor for class org.jooq.util.postgres.PGIntervalConverter
 
PGobjectParser - Class in org.jooq.util.postgres
A parser for Postgres PGobject anonymous types
PGobjectParser() - Constructor for class org.jooq.util.postgres.PGobjectParser
 
pi() - Static method in class org.jooq.impl.Factory
The PI literal.
pivot(Field<?>...) - Method in interface org.jooq.Table
Create a new TABLE reference from this table, pivoting it into another form This has been observed to work with SQLDialect.ORACLE SQLDialect.SQLSERVER (not yet officially supported) Other dialects by using some means of simulation (not yet officially supported)
pivot(Collection<? extends Field<?>>) - Method in interface org.jooq.Table
Create a new TABLE reference from this table, pivoting it into another form For more details, see Table.pivot(Field...)
PivotForStep - Interface in org.jooq
This type is used for the Oracle PIVOT clause DSL API, pivoting Table objects to new tables.
PivotInStep<T> - Interface in org.jooq
This type is used for the Oracle PIVOT clause DSL API, pivoting Table objects to new tables.
PLS_INTEGER - Static variable in class org.jooq.util.oracle.OracleDataType
 
position(String) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
position(Field<String>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
position(String, String) - Static method in class org.jooq.impl.Factory
Get the position(in, search) function
position(String, Field<String>) - Static method in class org.jooq.impl.Factory
Get the position(in, search) function
position(Field<String>, String) - Static method in class org.jooq.impl.Factory
Get the position(in, search) function
position(Field<String>, Field<String>) - Static method in class org.jooq.impl.Factory
Get the position(in, search) function This renders the position or any equivalent function: position([search] in [in]) or locate([in], [search]) or locate([search], [in]) or instr([in], [search]) or charindex([search], [in])
POSITIVE - Static variable in class org.jooq.util.oracle.OracleDataType
 
POSITIVEN - Static variable in class org.jooq.util.oracle.OracleDataType
 
PostgresDataType<T> - Class in org.jooq.util.postgres
Supported data types for the SQLDialect.POSTGRES dialect
PostgresFactory - Class in org.jooq.util.postgres
A SQLDialect.POSTGRES specific factory
PostgresFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.postgres.PostgresFactory
Deprecated. - 2.0.5 - Use PostgresFactory.PostgresFactory(Connection, Settings) instead
PostgresFactory(Connection, Settings) - Constructor for class org.jooq.util.postgres.PostgresFactory
Create a factory with connection and a settings configured
PostgresFactory(Connection) - Constructor for class org.jooq.util.postgres.PostgresFactory
Create a factory with connection
power(Number) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
power(Number, Number) - Static method in class org.jooq.impl.Factory
Get the power(field, exponent) function
power(Field<? extends Number>, Number) - Static method in class org.jooq.impl.Factory
Get the power(field, exponent) function
power(Number, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the power(field, exponent) function
power(Field<? extends Number>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the power(field, exponent) function This renders the power function where available: power([field], [exponent]) ... or simulates it elsewhere using ln and exp: exp(ln([field]) * [exponent])
prepareEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after preparing / creating the SQL statement Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
prepareEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
prepareEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
prepareStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before preparing / creating the SQL statement Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
prepareStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
prepareStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
prior(Field<T>) - Static method in class org.jooq.impl.Factory
Add the Oracle-specific PRIOR unary operator before a field (to be used along with CONNECT BY clauses)
processed() - Method in interface org.jooq.Loader
The number of processed rows
provideFor(Configuration) - Method in interface org.jooq.ConfigurationProvider
Deprecated. Provide a Configuration to jOOQ, given a deserialised Configuration.
provideFor(Configuration) - Static method in class org.jooq.ConfigurationRegistry
Deprecated. Communicate to client-registered ConfigurationProvider's This method is used by jOOQ retrieve a client-provided Configuration.

Q

query() - Method in interface org.jooq.ExecuteContext
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(String) - Method in interface org.jooq.FactoryOperations
Create a new query holding plain SQL.
query(String, Object...) - Method in interface org.jooq.FactoryOperations
Create a new query holding plain SQL.
query(String) - Method in class org.jooq.impl.Factory
Create a new query holding plain SQL.
query(String, Object...) - Method in class org.jooq.impl.Factory
Create a new query holding plain SQL.
query() - Method in interface org.jooq.LoaderError
The query whose execution failed
Query - Interface in org.jooq
Any query
QueryPart - Interface in org.jooq
The common base type for all objects that can be used for query composition.
QueryPartInternal - Interface in org.jooq
Base functionality declaration for all query objects This interface is for JOOQ INTERNAL USE only.
quote(char) - Method in interface org.jooq.LoaderCSVOptionsStep
Specify the quote character.

R

rad() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
rad(Number) - Static method in class org.jooq.impl.Factory
Calculate radians from degrees from this field
rad(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Calculate radians from degrees from this field This renders the degrees function where available: degrees([field]) ... or simulates it elsewhere: [field] * PI / 180
rand() - Static method in class org.jooq.impl.Factory
Get the rand() function
rank() - Static method in class org.jooq.impl.Factory
The rank_over() over ([analytic clause]) function.
RAW - Static variable in class org.jooq.util.h2.H2DataType
 
RAW - Static variable in class org.jooq.util.oracle.OracleDataType
 
readAll() - Method in class org.jooq.tools.csv.CSVReader
Reads the entire file into a List with each element being a String[] of tokens.
readNext() - Method in class org.jooq.tools.csv.CSVReader
Reads the next line from the buffer and converts to a string array.
readSQL(SQLInput, String) - Method in class org.jooq.impl.UDTRecordImpl
 
REAL - Static variable in class org.jooq.impl.SQLDataType
The Types.REAL type
REAL - Static variable in class org.jooq.util.ase.ASEDataType
 
REAL - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
REAL - Static variable in class org.jooq.util.db2.DB2DataType
 
REAL - Static variable in class org.jooq.util.derby.DerbyDataType
 
REAL - Static variable in class org.jooq.util.h2.H2DataType
 
REAL - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
REAL - Static variable in class org.jooq.util.ingres.IngresDataType
 
REAL - Static variable in class org.jooq.util.mysql.MySQLDataType
 
REAL - Static variable in class org.jooq.util.oracle.OracleDataType
 
REAL - Static variable in class org.jooq.util.postgres.PostgresDataType
 
REAL - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
REAL - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
REAL - Static variable in class org.jooq.util.sybase.SybaseDataType
 
record() - Method in interface org.jooq.ExecuteContext
The last record that was fetched from the result set, or null if no record has been fetched.
record(Record) - Method in interface org.jooq.ExecuteContext
Calling this has no effect.
Record - Interface in org.jooq
A wrapper for database result records returned by SelectQuery
recordEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after fetching a record from a ResultSet Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
recordEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
recordEnd(ExecuteContext) - Method in class org.jooq.tools.LoggerListener
 
recordEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
RecordHandler<R extends Record> - Interface in org.jooq
A RecordHandler is a handler that can receive Record objects, when fetching data from the database.
recordStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before fetching a record from a ResultSet Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
recordStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
recordStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
REF_CURSOR - Static variable in class org.jooq.util.oracle.OracleDataType
 
REFCURSOR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
Reflect - Class in org.jooq.tools.reflect
A wrapper for an Object or Class upon which reflective calls can be made.
ReflectException - Exception in org.jooq.tools.reflect
A unchecked wrapper for any of Java's checked reflection exceptions: These exceptions are ClassNotFoundException IllegalAccessException IllegalArgumentException InstantiationException InvocationTargetException NoSuchMethodException NoSuchFieldException SecurityException
ReflectException(String) - Constructor for exception org.jooq.tools.reflect.ReflectException
 
ReflectException(String, Throwable) - Constructor for exception org.jooq.tools.reflect.ReflectException
 
ReflectException() - Constructor for exception org.jooq.tools.reflect.ReflectException
 
ReflectException(Throwable) - Constructor for exception org.jooq.tools.reflect.ReflectException
 
refresh() - Method in class org.jooq.impl.UpdatableRecordImpl
 
refresh() - Method in interface org.jooq.UpdatableRecord
Refresh this record from the database, based on the value of the primary key or main unique key.
refreshUsing(TableField<R, ?>...) - Method in class org.jooq.impl.TableRecordImpl
 
refreshUsing(TableField<R, ?>...) - Method in interface org.jooq.TableRecord
Refresh this record from the database, based on the value of the provided keys.
REGPROC - Static variable in class org.jooq.util.postgres.PostgresDataType
 
render(QueryPart) - Method in interface org.jooq.FactoryOperations
Render a QueryPart in the context of this factory This is the same as calling renderContext().render(part)
render(QueryPart) - Method in class org.jooq.impl.Factory
Render a QueryPart in the context of this factory This is the same as calling renderContext().render(part)
render() - Method in interface org.jooq.RenderContext
Render the context's underlying SQL statement
render(QueryPart) - Method in interface org.jooq.RenderContext
Render a query part in a new context derived from this one.
renderContext() - Method in class org.jooq.impl.Factory
Get a new RenderContext for the context of this factory This will return an initialised render context as such: Context.declareFields() == false Context.declareTables() == false RenderContext.inline() == false RenderContext.namedParams() == false RenderContext for JOOQ INTERNAL USE only.
RenderContext - Interface in org.jooq
The render context is used for rendering QueryPart's to SQL.
RenderContext.CastMode - Enum in org.jooq
The cast mode for bind values.
renderEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after rendering SQL from a QueryPart Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
renderEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
renderEnd(ExecuteContext) - Method in class org.jooq.tools.LoggerListener
 
renderEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
renderFormatted - Variable in class org.jooq.conf.Settings
 
renderInlined(QueryPart) - Method in interface org.jooq.FactoryOperations
Render a QueryPart in the context of this factory, inlining all bind variables.
renderInlined(QueryPart) - Method in class org.jooq.impl.Factory
Render a QueryPart in the context of this factory, inlining all bind variables.
RenderKeywordStyle - Enum in org.jooq.conf
Java class for RenderKeywordStyle.
renderKeywordStyle - Variable in class org.jooq.conf.Settings
 
RenderMapping - Class in org.jooq.conf
Java class for RenderMapping complex type.
RenderMapping() - Constructor for class org.jooq.conf.RenderMapping
 
renderMapping - Variable in class org.jooq.conf.Settings
 
renderNamedParams(QueryPart) - Method in interface org.jooq.FactoryOperations
Render a QueryPart in the context of this factory, rendering bind variables as named parameters.
renderNamedParams(QueryPart) - Method in class org.jooq.impl.Factory
Render a QueryPart in the context of this factory, rendering bind variables as named parameters.
RenderNameStyle - Enum in org.jooq.conf
Java class for RenderNameStyle.
renderNameStyle - Variable in class org.jooq.conf.Settings
 
renderStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before rendering SQL from a QueryPart Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise
renderStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
renderStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
repeat(Number) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
repeat(Field<? extends Number>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
repeat(String, int) - Static method in class org.jooq.impl.Factory
Get the repeat(field, count) function
repeat(String, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the repeat(field, count) function
repeat(Field<String>, int) - Static method in class org.jooq.impl.Factory
Get the repeat(count) function
repeat(Field<String>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the repeat(field, count) function This renders the repeat or replicate function where available: repeat([field], [count]) or replicate([field], [count]) ... or simulates it elsewhere using rpad and length, which may be simulated as well, depending on the RDBMS: rpad([field], length([field]) * [count], [field])
replace(Field<String>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
replace(String) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
replace(Field<String>, Field<String>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
replace(String, String) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
replace(Field<String>, String) - Static method in class org.jooq.impl.Factory
Get the replace(field, search) function
replace(Field<String>, Field<String>) - Static method in class org.jooq.impl.Factory
Get the replace(field, search) function This renders the replace or str_replace function where available: replace([field], [search]) or str_replace([field], [search]) ... or simulates it elsewhere using the three-argument replace function: replace([field], [search], '')
replace(Field<String>, String, String) - Static method in class org.jooq.impl.Factory
Get the replace(field, search, replace) function
replace(Field<String>, Field<String>, Field<String>) - Static method in class org.jooq.impl.Factory
Get the replace(field, search, replace) function This renders the replace or str_replace function: replace([field], [search]) or str_replace([field], [search])
replaceEach(String, String[], String[]) - Static method in class org.jooq.tools.StringUtils
Replaces all occurrences of Strings within another String.
respectNulls() - Method in interface org.jooq.WindowIgnoreNullsStep
Add a RESPECT NULLS clause to the window function.
result() - Method in interface org.jooq.ExecuteContext
The last result that was fetched from the result set, or null if no result has been fetched.
result(Result<?>) - Method in interface org.jooq.ExecuteContext
Calling this has no effect.
RESULT - Static variable in class org.jooq.impl.SQLDataType
The ResultSet type This is not a SQL or JDBC standard.
Result<R extends Record> - Interface in org.jooq
A wrapper for database results returned by SelectQuery
resultEnd(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called after fetching a set of records from a ResultSet Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
resultEnd(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
resultEnd(ExecuteContext) - Method in class org.jooq.tools.LoggerListener
 
resultEnd(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
resultQuery(String) - Method in interface org.jooq.FactoryOperations
Create a new query holding plain SQL.
resultQuery(String, Object...) - Method in interface org.jooq.FactoryOperations
Create a new query holding plain SQL.
resultQuery(String) - Method in class org.jooq.impl.Factory
Create a new query holding plain SQL.
resultQuery(String, Object...) - Method in class org.jooq.impl.Factory
Create a new query holding plain SQL.
ResultQuery<R extends Record> - Interface in org.jooq
A query that can return results.
resultSet() - Method in interface org.jooq.Cursor
Get the Cursor's underlying ResultSet If you modify the underlying ResultSet, the Cursor may be affected and in some cases, rendered unusable.
resultSet() - Method in interface org.jooq.ExecuteContext
The ResultSet that is being fetched or null if the result set is unknown or if no result set is being fetched.
resultSet(ResultSet) - Method in interface org.jooq.ExecuteContext
Override the ResultSet that is being fetched.
resultStart(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called before fetching a set of records from a ResultSet Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise ExecuteContext.sql(): The rendered SQL statement that is about to be executed, or null if the SQL statement is unknown..
resultStart(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
resultStart(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
returning(Field<?>...) - Method in interface org.jooq.DivideByReturningStep
Specify the fields that you want the division to return from the dividend
returning(Collection<? extends Field<?>>) - Method in interface org.jooq.DivideByReturningStep
Specify the fields that you want the division to return from the dividend
returning() - Method in interface org.jooq.InsertReturningStep
Configure the INSERT statement to return all fields in R.
returning(Field<?>...) - Method in interface org.jooq.InsertReturningStep
Configure the INSERT statement to return a list of fields in R.
returning(Collection<? extends Field<?>>) - Method in interface org.jooq.InsertReturningStep
Configure the INSERT statement to return a list of fields in R.
rightOuterJoin(TableLike<?>) - Method in interface org.jooq.SelectJoinStep
Convenience method to RIGHT OUTER JOIN a table to the last table added to the FROM clause using Table.rightOuterJoin(TableLike) This is only possible where the underlying RDBMS supports it
rightOuterJoin(String) - Method in interface org.jooq.SelectJoinStep
Convenience method to RIGHT OUTER JOIN a table to the last table added to the FROM clause using Table.rightOuterJoin(String) This is only possible where the underlying RDBMS supports it NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
rightOuterJoin(String, Object...) - Method in interface org.jooq.SelectJoinStep
Convenience method to RIGHT OUTER JOIN a table to the last table added to the FROM clause using Table.rightOuterJoin(String, Object...)
rightOuterJoin(TableLike<?>) - Method in interface org.jooq.Table
RIGHT OUTER JOIN a table to this table.
rightOuterJoin(String) - Method in interface org.jooq.Table
RIGHT OUTER JOIN a table to this table.
rightOuterJoin(String, Object...) - Method in interface org.jooq.Table
RIGHT OUTER JOIN a table to this table.
rightPad(String, int) - Static method in class org.jooq.tools.StringUtils
Right pad a String with spaces (' ').
rightPad(String, int, char) - Static method in class org.jooq.tools.StringUtils
Right pad a String with a specified character.
rightPad(String, int, String) - Static method in class org.jooq.tools.StringUtils
Right pad a String with a specified String.
rollup(Field<?>...) - Static method in class org.jooq.impl.Factory
Create a ROLLUP(field1, field2, .., fieldn) grouping field This has been observed to work with the following databases: CUBRID (simulated using the GROUP BY ..
round() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
round(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
round(T) - Static method in class org.jooq.impl.Factory
Get rounded value of a numeric field: round(field)
round(Field<T>) - Static method in class org.jooq.impl.Factory
Get rounded value of a numeric field: round(field) This renders the round function where available: round([field]) or round([field], 0) ... or simulates it elsewhere using floor and ceil
round(T, int) - Static method in class org.jooq.impl.Factory
Get rounded value of a numeric field: round(field, decimals)
round(Field<T>, int) - Static method in class org.jooq.impl.Factory
Get rounded value of a numeric field: round(field, decimals) This renders the round function where available: round([field], [decimals]) ... or simulates it elsewhere using floor and ceil
routine() - Method in interface org.jooq.ExecuteContext
The jOOQ Routine that is being executed or null if the query is unknown or if there was no jOOQ Routine
Routine<T> - Interface in org.jooq
A routine is a callable object in your RDBMS.
row() - Method in interface org.jooq.LoaderError
The row data that caused the error
ROW - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
ROWID - Static variable in class org.jooq.util.db2.DB2DataType
 
rowid() - Static method in class org.jooq.util.oracle.OracleFactory
Retrieve the Oracle-specific ROWID pseudo-field
rowid() - Static method in class org.jooq.util.sqlite.SQLiteFactory
Retrieve the SQLite-specific _rowid_ pseudo-field.
rowIndex() - Method in interface org.jooq.LoaderError
The processed row index starting with 0 that caused the error
rownum() - Static method in class org.jooq.util.oracle.OracleFactory
Retrieve the Oracle-specific ROWNUM pseudo-field
rowNumber() - Static method in class org.jooq.impl.Factory
The row_number() over ([analytic clause]) function.
rowsBetweenCurrentRow() - Method in interface org.jooq.WindowRowsStep
Add a ROWS BETWEEN CURRENT ROW ...
rowsBetweenFollowing(int) - Method in interface org.jooq.WindowRowsStep
Add a ROWS BETWEEN [number] FOLLOWING ...
rowsBetweenPreceding(int) - Method in interface org.jooq.WindowRowsStep
Add a ROWS BETWEEN [number] PRECEDING ...
rowsBetweenUnboundedFollowing() - Method in interface org.jooq.WindowRowsStep
Add a ROWS BETWEEN UNBOUNDED FOLLOWING ...
rowsBetweenUnboundedPreceding() - Method in interface org.jooq.WindowRowsStep
Add a ROWS BETWEEN UNBOUNDED PRECEDING ...
rowsCurrentRow() - Method in interface org.jooq.WindowRowsStep
Add a ROWS CURRENT ROW frame clause to the window function.
rowsFollowing(int) - Method in interface org.jooq.WindowRowsStep
Add a ROWS [number] FOLLOWING frame clause to the window function.
rowsPreceding(int) - Method in interface org.jooq.WindowRowsStep
Add a ROWS [number] PRECEDING frame clause to the window function.
rowsUnboundedFollowing() - Method in interface org.jooq.WindowRowsStep
Add a ROWS UNBOUNDED FOLLOWING frame clause to the window function.
rowsUnboundedPreceding() - Method in interface org.jooq.WindowRowsStep
Add a ROWS UNBOUNDED PRECEDING frame clause to the window function.
ROWVERSION - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
rpad(Field<? extends Number>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
rpad(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
rpad(Field<? extends Number>, Field<String>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
rpad(int, char) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
rpad(Field<String>, int) - Static method in class org.jooq.impl.Factory
Get the rpad(field, length) function
rpad(Field<String>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the rpad(field, length) function This renders the rpad function where available: rpad([field], [length]) ... or simulates it elsewhere using concat, repeat, and length, which may be simulated as well, depending on the RDBMS: concat([field], repeat(' ', [length] - length([field])))
rpad(Field<String>, int, char) - Static method in class org.jooq.impl.Factory
Get the rpad(field, length, character) function
rpad(Field<String>, int, String) - Static method in class org.jooq.impl.Factory
Get the rpad(field, length, character) function
rpad(Field<String>, Field<? extends Number>, Field<String>) - Static method in class org.jooq.impl.Factory
Get the rpad(field, length, character) function This renders the rpad function where available: rpad([field], [length]) ... or simulates it elsewhere using concat, repeat, and length, which may be simulated as well, depending on the RDBMS: concat([field], repeat([character], [length] - length([field])))
rtrim() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
rtrim(String) - Static method in class org.jooq.impl.Factory
Get the rtrim(field) function
rtrim(Field<String>) - Static method in class org.jooq.impl.Factory
Get the rtrim(field) function This renders the rtrim function in all dialects: rtrim([field])

S

Schema - Interface in org.jooq
An entity representing a database schema
SchemaImpl - Class in org.jooq.impl
A common base class for database schemata This type is for JOOQ INTERNAL USE only.
SchemaImpl(String) - Constructor for class org.jooq.impl.SchemaImpl
 
SchemaMapping - Class in org.jooq
Deprecated. - 2.0.5 - Use runtime configuration Settings instead
SchemaMapping() - Constructor for class org.jooq.SchemaMapping
Deprecated. Construct an empty mapping
SchemaMapping(Settings) - Constructor for class org.jooq.SchemaMapping
Deprecated. Construct a mapping from a Settings object
SchemaProvider - Interface in org.jooq
An object providing a Schema.
schemata - Variable in class org.jooq.conf.RenderMapping
 
second(Date) - Static method in class org.jooq.impl.Factory
Get the second part of a date This is the same as calling Factory.extract(java.util.Date, DatePart) with DatePart.SECOND
second(Field<? extends Date>) - Static method in class org.jooq.impl.Factory
Get the second part of a date This is the same as calling Factory.extract(Field, DatePart) with DatePart.SECOND
select(Field<?>...) - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement.
select(Collection<? extends Field<?>>) - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement.
select(Field<?>...) - Method in class org.jooq.impl.Factory
Create a new DSL select statement.
select(Collection<? extends Field<?>>) - Method in class org.jooq.impl.Factory
Create a new DSL select statement.
select(Select<?>) - Method in interface org.jooq.InsertSetStep
Use a SELECT statement as the source of values for the INSERT statement This variant of the INSERT ..
select(Select<?>) - Method in interface org.jooq.InsertValuesStep
Use a SELECT statement as the source of values for the INSERT statement This variant of the INSERT ..
Select<R extends Record> - Interface in org.jooq
A Query that can provide a Result after execution
select(Field<?>...) - Method in interface org.jooq.SelectSelectStep
Add additional fields to the SELECT clause of this query
select(Collection<? extends Field<?>>) - Method in interface org.jooq.SelectSelectStep
Add additional fields to the SELECT clause of this query
SelectConditionStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectConnectByConditionStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectConnectByStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
selectCount() - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement for COUNT(*) Example: Factory create = new Factory(); create.selectCount() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
selectCount() - Method in class org.jooq.impl.Factory
Create a new DSL select statement for COUNT(*) Example: Factory create = new Factory(); create.selectCount() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
selectDistinct(Field<?>...) - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement.
selectDistinct(Collection<? extends Field<?>>) - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement.
selectDistinct(Field<?>...) - Method in class org.jooq.impl.Factory
Create a new DSL select statement.
selectDistinct(Collection<? extends Field<?>>) - Method in class org.jooq.impl.Factory
Create a new DSL select statement.
SelectFinalStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectForUpdateOfStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectForUpdateStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectForUpdateWaitStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
selectFrom(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement Example: SELECT * FROM [table] WHERE [conditions] ORDER BY [ordering] LIMIT [limit clause]
selectFrom(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DSL select statement Example: SELECT * FROM [table] WHERE [conditions] ORDER BY [ordering] LIMIT [limit clause]
SelectFromStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectGroupByStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectHavingConditionStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectHavingStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectJoinStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectLimitStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectOffsetStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectOnConditionStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
selectOne() - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement for constant 1 literal Example: Factory create = new Factory(); create.selectOne() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
selectOne() - Method in class org.jooq.impl.Factory
Create a new DSL select statement for constant 1 literal Example: Factory create = new Factory(); create.selectOne() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
SelectOnStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectOrderByStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
selectQuery() - Method in interface org.jooq.FactoryOperations
Create a new SelectQuery
selectQuery(TableLike<R>) - Method in interface org.jooq.FactoryOperations
Create a new SelectQuery
selectQuery() - Method in class org.jooq.impl.Factory
Create a new SelectQuery
selectQuery(TableLike<R>) - Method in class org.jooq.impl.Factory
Create a new SelectQuery
SelectQuery - Interface in org.jooq
A query for data selection
SelectSelectStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectStartWithStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
SelectWhereStep - Interface in org.jooq
This type is used for the Select's DSL API when selecting generic Record types.
selectZero() - Method in interface org.jooq.FactoryOperations
Create a new DSL select statement for constant 0 literal Example: Factory create = new Factory(); create.selectZero() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
selectZero() - Method in class org.jooq.impl.Factory
Create a new DSL select statement for constant 0 literal Example: Factory create = new Factory(); create.selectZero() .from(table1) .join(table2).on(field1.equal(field2)) .where(field1.greaterThan(100)) .orderBy(field2) .execute();
separator(String) - Method in interface org.jooq.GroupConcatSeparatorStep
Specify the separator on the GROUP_CONCAT function
separator(char) - Method in interface org.jooq.LoaderCSVOptionsStep
Specify the separator character.
Sequence<T extends Number> - Interface in org.jooq
A type representing sequences in databases that support this.
SequenceImpl<T extends Number> - Class in org.jooq.impl
A common base class for sequences This type is for JOOQ INTERNAL USE only.
SequenceImpl(String, Schema, DataType<T>) - Constructor for class org.jooq.impl.SequenceImpl
 
SERIAL - Static variable in class org.jooq.util.postgres.PostgresDataType
 
SERIAL4 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
SERIAL8 - Static variable in class org.jooq.util.postgres.PostgresDataType
 
set(Array) - Method in interface org.jooq.ArrayRecord
Set the contained array
set(E...) - Method in interface org.jooq.ArrayRecord
Set the contained array
set(T...) - Method in class org.jooq.impl.ArrayRecordImpl
 
set(Array) - Method in class org.jooq.impl.ArrayRecordImpl
 
set(Field<T>, T) - Method in interface org.jooq.InsertOnDuplicateSetStep
Set values for UPDATE in the INSERT statement's ON DUPLICATE KEY UPDATE clause
set(Field<T>, Field<T>) - Method in interface org.jooq.InsertOnDuplicateSetStep
Set values for UPDATE in the INSERT statement's ON DUPLICATE KEY UPDATE clause
set(Map<? extends Field<?>, ?>) - Method in interface org.jooq.InsertOnDuplicateSetStep
Set multiple values for UPDATE in the INSERT statement's ON DUPLICATE KEY UPDATE clause Please assure that key/value pairs have matching <T> types.
set(Field<T>, T) - Method in interface org.jooq.InsertSetStep
Set a value for a field in the UPDATE statement
set(Field<T>, Field<T>) - Method in interface org.jooq.InsertSetStep
Set a value for a field in the UPDATE statement
set(Map<? extends Field<?>, ?>) - Method in interface org.jooq.InsertSetStep
Set a value for a field in the UPDATE statement Please assure that key/value pairs have matching <T> types.
set(Field<T>, T) - Method in interface org.jooq.MergeMatchedSetStep
Set values for UPDATE in the MERGE statement's WHEN MATCHED clause
set(Field<T>, Field<T>) - Method in interface org.jooq.MergeMatchedSetStep
Set values for UPDATE in the MERGE statement's WHEN MATCHED clause
set(Map<? extends Field<?>, ?>) - Method in interface org.jooq.MergeMatchedSetStep
Set multiple values for UPDATE in the MERGE statement's WHEN MATCHED clause.
set(Field<T>, T) - Method in interface org.jooq.MergeNotMatchedSetStep
Set values for INSERT in the MERGE statement's WHEN NOT MATCHED clause
set(Field<T>, Field<T>) - Method in interface org.jooq.MergeNotMatchedSetStep
Set values for INSERT in the MERGE statement's WHEN NOT MATCHED clause
set(Map<? extends Field<?>, ?>) - Method in interface org.jooq.MergeNotMatchedSetStep
Set multiple values for INSERT in the MERGE statement's WHEN NOT MATCHED clause.
set(String, Object) - Method in class org.jooq.tools.reflect.Reflect
Set a field value.
set(Field<T>, T) - Method in interface org.jooq.UpdateSetStep
Set a value for a field in the UPDATE statement
set(Field<T>, Field<T>) - Method in interface org.jooq.UpdateSetStep
Set a value for a field in the UPDATE statement
set(Map<? extends Field<?>, ?>) - Method in interface org.jooq.UpdateSetStep
Set a value for a field in the UPDATE statement Please assure that key/value pairs have matching <T> types.
SET - Static variable in class org.jooq.util.mysql.MySQLDataType
 
setConnectByStartWith(Condition) - Method in interface org.jooq.SelectQuery
Add an Oracle-specific START WITH clause to the query's CONNECT BY clause
setConnection(Connection) - Method in interface org.jooq.Configuration
Set the configured connection
setConnection(Connection) - Method in interface org.jooq.ExecuteContext
Override the Connection that is being used for execution.
setConnection(Connection) - Method in class org.jooq.impl.Factory
 
setConverted(Object) - Method in interface org.jooq.Param
Sets a converted value, using this Param's underlying DataType, obtained from NamedTypeProviderQueryPart.getDataType()
setData(String, Object) - Method in interface org.jooq.Configuration
Set some custom data to this Configuration This is custom data that was previously set to the configuration using Configuration.setData(String, Object).
setData(String, Object) - Method in class org.jooq.impl.Factory
Set some custom data to this Configuration This is custom data that was previously set to the configuration using Configuration.setData(String, Object).
setDefaultSchema(String) - Method in class org.jooq.conf.RenderMapping
Sets the value of the defaultSchema property.
setDefaultSchema(String) - Method in class org.jooq.SchemaMapping
Deprecated. Synonym for SchemaMapping.use(String).
setDistinct(boolean) - Method in interface org.jooq.SelectQuery
Add "distinct" keyword to the select clause
setExecuteLogging(Boolean) - Method in class org.jooq.conf.Settings
Sets the value of the executeLogging property.
setField(Parameter<?>, Field<?>) - Method in class org.jooq.impl.AbstractRoutine
 
setForShare(boolean) - Method in interface org.jooq.LockProvider
Sets the "FOR SHARE" flag onto the query This has been observed to be supported by any of these dialects: MySQL's InnoDB locking reads Postgres FOR UPDATE / FOR SHARE If your dialect does not support this clause, jOOQ will still render it, if you apply it to your query.
setForUpdate(boolean) - Method in interface org.jooq.LockProvider
Sets the "FOR UPDATE" flag onto the query This has been observed to be supported by any of these dialects: setForUpdateNoWait() - Method in interface org.jooq.LockProvider
Some RDBMS allow for specifying the locking mode for the applied FOR UPDATE clause.
setForUpdateOf(Field<?>...) - Method in interface org.jooq.LockProvider
Some RDBMS allow for specifying the fields that should be locked by the FOR UPDATE clause, instead of the full row.
setForUpdateOf(Collection<? extends Field<?>>) - Method in interface org.jooq.LockProvider
Some RDBMS allow for specifying the fields that should be locked by the FOR UPDATE clause, instead of the full row.
setForUpdateOf(Table<?>...) - Method in interface org.jooq.LockProvider
Some RDBMS allow for specifying the tables that should be locked by the FOR UPDATE clause, instead of the full row.
setForUpdateSkipLocked() - Method in interface org.jooq.LockProvider
Some RDBMS allow for specifying the locking mode for the applied FOR UPDATE clause.
setForUpdateWait(int) - Method in interface org.jooq.LockProvider
Some RDBMS allow for specifying the locking mode for the applied FOR UPDATE clause.
setInput(String) - Method in class org.jooq.conf.MappedSchema
Sets the value of the input property.
setInput(String) - Method in class org.jooq.conf.MappedTable
Sets the value of the input property.
setList(List<? extends E>) - Method in interface org.jooq.ArrayRecord
Set the contained array as a List
setList(List<? extends T>) - Method in class org.jooq.impl.ArrayRecordImpl
 
setNumber(Parameter<? extends Number>, Number) - Method in class org.jooq.impl.AbstractRoutine
 
setNumber(Parameter<? extends Number>, Field<? extends Number>) - Method in class org.jooq.impl.AbstractRoutine
 
setOutput(String) - Method in class org.jooq.conf.MappedSchema
Sets the value of the output property.
setOutput(String) - Method in class org.jooq.conf.MappedTable
Sets the value of the output property.
setOverloaded(boolean) - Method in class org.jooq.impl.AbstractRoutine
 
setProvider(ConfigurationProvider) - Static method in class org.jooq.ConfigurationRegistry
Deprecated. Register a client ConfigurationProvider to provide jOOQ with Configuration's upon deserialisation.
setRecord(R) - Method in interface org.jooq.StoreQuery
Add values to the store statement
setRenderFormatted(Boolean) - Method in class org.jooq.conf.Settings
Sets the value of the renderFormatted property.
setRenderKeywordStyle(RenderKeywordStyle) - Method in class org.jooq.conf.Settings
Sets the value of the renderKeywordStyle property.
setRenderMapping(RenderMapping) - Method in class org.jooq.conf.Settings
Sets the value of the renderMapping property.
setRenderNameStyle(RenderNameStyle) - Method in class org.jooq.conf.Settings
Sets the value of the renderNameStyle property.
setReturning() - Method in interface org.jooq.InsertQuery
Configure the INSERT statement to return all fields in R.
setReturning(Identity<R, ? extends Number>) - Method in interface org.jooq.InsertQuery
Configure the INSERT statement to return the generated identity value.
setReturning(Field<?>...) - Method in interface org.jooq.InsertQuery
Configure the INSERT statement to return a list of fields in R.
setReturning(Collection<? extends Field<?>>) - Method in interface org.jooq.InsertQuery
Configure the INSERT statement to return a list of fields in R.
setReturnParameter(Parameter<T>) - Method in class org.jooq.impl.AbstractRoutine
 
setSchemaMapping(Map<String, String>) - Method in class org.jooq.SchemaMapping
Deprecated. Initialise SchemaMapping.
setStatementType(StatementType) - Method in class org.jooq.conf.Settings
Sets the value of the statementType property.
Settings - Class in org.jooq.conf
Java class for Settings complex type.
Settings() - Constructor for class org.jooq.conf.Settings
 
SettingsTools - Class in org.jooq.conf
Convenience methods for jOOQ runtime settings
SettingsTools() - Constructor for class org.jooq.conf.SettingsTools
 
setValue(Parameter<?>, Object) - Method in class org.jooq.impl.AbstractRoutine
 
setValue(T) - Method in interface org.jooq.Param
Set the parameter's underlying value.
setValue(Field<T>, T) - Method in interface org.jooq.Record
Set a value into this record.
setValue(Field<T>, U, Converter<T, ? super U>) - Method in interface org.jooq.Record
Set a value into this record.
sha1(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific SHA1() function
sha1(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific SHA1() function
sha2(String, int) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific SHA2() function
sha2(Field<String>, Field<Integer>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific SHA2() function
shl(T, T) - Static method in class org.jooq.impl.Factory
The bitwise left shift operator.
shl(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise left shift operator.
shl(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise left shift operator.
shl(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise left shift operator.
SHORT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
shortValue() - Method in interface org.jooq.types.Interval
 
shr(T, T) - Static method in class org.jooq.impl.Factory
The bitwise right shift operator.
shr(T, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise right shift operator.
shr(Field<T>, T) - Static method in class org.jooq.impl.Factory
The bitwise right shift operator.
shr(Field<T>, Field<T>) - Static method in class org.jooq.impl.Factory
The bitwise right shift operator.
sign() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
sign(Number) - Static method in class org.jooq.impl.Factory
Get the sign of a numeric field: sign(field)
sign(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sign of a numeric field: sign(field) This renders the sign function where available: sign([field]) ... or simulates it elsewhere (without bind variables on values -1, 0, 1): CASE WHEN [this] > 0 THEN 1 WHEN [this] < 0 THEN -1 ELSE 0 END
SIGNED - Static variable in class org.jooq.util.h2.H2DataType
 
SIGNTYPE - Static variable in class org.jooq.util.oracle.OracleDataType
 
SimpleSelectConditionStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectFinalStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectForUpdateOfStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectForUpdateStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectForUpdateWaitStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectLimitStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectOffsetStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectOrderByStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
SimpleSelectQuery<R extends Record> - Interface in org.jooq
A simple select query that provides Records from a single table, with no joins allowed.
SimpleSelectWhereStep<R extends Record> - Interface in org.jooq
This type is used for the Select's DSL API when selecting specific Record types.
sin() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
sin(Number) - Static method in class org.jooq.impl.Factory
Get the sine(field) function
sin(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sine(field) function This renders the sin function where available: sin([field])
sinh() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
sinh(Number) - Static method in class org.jooq.impl.Factory
Get the hyperbolic sine function: sinh(field)
sinh(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the hyperbolic sine function: sinh(field) This renders the sinh function where available: sinh([field]) ... or simulates it elsewhere using exp: (exp([field] * 2) - 1) / (exp([field] * 2))
size() - Method in interface org.jooq.ArrayRecord
Get the size of the contained array
size() - Method in class org.jooq.impl.ArrayRecordImpl
 
size() - Method in interface org.jooq.Store
Get the size of this Store.
skipLocked() - Method in interface org.jooq.SelectForUpdateWaitStep
Add a WAIT clause to the FOR UPDATE clause at the end of the query.
skipLocked() - Method in interface org.jooq.SimpleSelectForUpdateWaitStep
Add a WAIT clause to the FOR UPDATE clause at the end of the query.
SMALLDATETIME - Static variable in class org.jooq.util.ase.ASEDataType
 
SMALLDATETIME - Static variable in class org.jooq.util.h2.H2DataType
 
SMALLDATETIME - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
SMALLDATETIME - Static variable in class org.jooq.util.sybase.SybaseDataType
 
SMALLINT - Static variable in class org.jooq.impl.SQLDataType
The Types.SMALLINT type
SMALLINT - Static variable in class org.jooq.util.ase.ASEDataType
 
SMALLINT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
SMALLINT - Static variable in class org.jooq.util.db2.DB2DataType
 
SMALLINT - Static variable in class org.jooq.util.derby.DerbyDataType
 
SMALLINT - Static variable in class org.jooq.util.h2.H2DataType
 
SMALLINT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
SMALLINT - Static variable in class org.jooq.util.ingres.IngresDataType
 
SMALLINT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
SMALLINT - Static variable in class org.jooq.util.oracle.OracleDataType
 
SMALLINT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
SMALLINT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
SMALLINT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
SMALLINT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
SMALLINTUNSIGNED - Static variable in class org.jooq.impl.SQLDataType
The unsigned Types.SMALLINT type
SMALLINTUNSIGNED - Static variable in class org.jooq.util.mysql.MySQLDataType
 
SMALLMONEY - Static variable in class org.jooq.util.ase.ASEDataType
 
SMALLMONEY - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
SMALLMONEY - Static variable in class org.jooq.util.sybase.SybaseDataType
 
sort(Map<T, Z>) - Method in interface org.jooq.Field
Create a sort field of the form (in pseudo code) CASE [this] WHEN [sortMap.key(0)] THEN sortMap.value(0) WHEN [sortMap.key(1)] THEN sortMap.value(1) ...
sortAsc(Collection<T>) - Method in interface org.jooq.Field
Create a sort field of the form CASE [this] WHEN [sortList.get(0)] THEN 0 WHEN [sortList.get(1)] THEN 1 ...
sortAsc(T...) - Method in interface org.jooq.Field
Create a sort field of the form CASE [this] WHEN [sortList[0]] THEN 0 WHEN [sortList[1]] THEN 1 ...
sortDesc(Collection<T>) - Method in interface org.jooq.Field
Create a sort field of the form CASE [this] WHEN [sortList.get(0)] THEN 0 WHEN [sortList.get(1)] THEN 1 ...
sortDesc(T...) - Method in interface org.jooq.Field
Create a sort field of the form CASE [this] WHEN [sortList[0]] THEN 0 WHEN [sortList[1]] THEN 1 ...
SortField<T> - Interface in org.jooq
A wrapper for a Field and a SortField
SortOrder - Enum in org.jooq
The sorting order used in OrderByFieldLists
split(String, CharSequence) - Static method in class org.jooq.tools.StringUtils
A custom adaptation of Pattern.split(CharSequence, int).
splitDebug(String) - Method in class org.jooq.tools.StopWatch
Split the time and debug log a message, if trace logging is enabled
splitInfo(String) - Method in class org.jooq.tools.StopWatch
Split the time and info log a message, if trace logging is enabled
splitTrace(String) - Method in class org.jooq.tools.StopWatch
Split the time and trace log a message, if trace logging is enabled
sql() - Method in interface org.jooq.ExecuteContext
The SQL that is being executed or null if the SQL statement is unknown or if there was no SQL statement
sql(String) - Method in interface org.jooq.ExecuteContext
Override the SQL statement that is being executed.
sql(String) - Method in interface org.jooq.RenderContext
Append some SQL to the context's contained StringBuilder
sql(char) - Method in interface org.jooq.RenderContext
Append some SQL to the context's contained StringBuilder
sql(int) - Method in interface org.jooq.RenderContext
Append some SQL to the context's contained StringBuilder
sql(QueryPart) - Method in interface org.jooq.RenderContext
Recurse rendering
SQLDataType<T> - Class in org.jooq.impl
The SQL standard data types, as described in Types.
SQLDialect - Enum in org.jooq
This enumeration lists all supported dialects.
SQLDialectNotSupportedException - Exception in org.jooq.exception
An exception thrown if an SQL construct is used, which is not supported by the dialect set in Configuration.getDialect()
SQLDialectNotSupportedException(String) - Constructor for exception org.jooq.exception.SQLDialectNotSupportedException
 
SQLDialectNotSupportedException(String, boolean) - Constructor for exception org.jooq.exception.SQLDialectNotSupportedException
 
SQLiteDataType<T> - Class in org.jooq.util.sqlite
Supported data types for the SQLDialect.SQLITE dialect
SQLiteFactory - Class in org.jooq.util.sqlite
A SQLDialect.SQLITE specific factory
SQLiteFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.sqlite.SQLiteFactory
Deprecated. - 2.0.5 - Use SQLiteFactory.SQLiteFactory(Connection, Settings) instead
SQLiteFactory(Connection, Settings) - Constructor for class org.jooq.util.sqlite.SQLiteFactory
Create a factory with connection and a settings configured
SQLiteFactory(Connection) - Constructor for class org.jooq.util.sqlite.SQLiteFactory
Create a factory with connection
SQLServerDataType<T> - Class in org.jooq.util.sqlserver
Supported data types for the SQLDialect.SQLSERVER dialect
SQLServerFactory - Class in org.jooq.util.sqlserver
A SQLDialect.SQLSERVER specific factory
SQLServerFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.sqlserver.SQLServerFactory
Deprecated. - 2.0.5 - Use SQLServerFactory.SQLServerFactory(Connection, Settings) instead
SQLServerFactory(Connection, Settings) - Constructor for class org.jooq.util.sqlserver.SQLServerFactory
Create a factory with connection and a settings configured
SQLServerFactory(Connection) - Constructor for class org.jooq.util.sqlserver.SQLServerFactory
Create a factory with connection
sqrt() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
sqrt(Number) - Static method in class org.jooq.impl.Factory
Get the sqrt(field) function
sqrt(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sqrt(field) function This renders the sqrt function where available: sqrt([field]) ... or simulates it elsewhere using power (which in turn may also be simulated using ln and exp functions): power([field], 0.5)
start(ExecuteContext) - Method in interface org.jooq.ExecuteListener
Called to initialise an ExecuteListener Available attributes from ExecuteContext: ExecuteContext.getConnection(): The connection used for execution ExecuteContext.configuration(): The execution configuration ExecuteContext.query(): The Query object, if a jOOQ query is being executed or null otherwise ExecuteContext.routine(): The Routine object, if a jOOQ routine is being executed or null otherwise Overridable attributes in ExecuteContext: ExecuteContext.setConnection(Connection): The connection used for execution.
start(ExecuteContext) - Method in class org.jooq.impl.DefaultExecuteListener
 
start(ExecuteContext) - Method in class org.jooq.tools.StopWatchListener
 
startsWith(T) - Method in interface org.jooq.Field
Convenience method for Field.like(String, char) including proper adding of wildcards and escaping SQL: this like (escape(value, '\') || '%') escape '\' Note: This also works with numbers, for instance val(1133).startsWith(11)
startsWith(Field<T>) - Method in interface org.jooq.Field
Convenience method for Field.like(String, char) including proper adding of wildcards and escaping SQL: this like (escape(value, '\') || '%') escape '\' Note: This also works with numbers, for instance val(1133).startsWith(11)
startWith(Condition) - Method in interface org.jooq.SelectStartWithStep
Add an Oracle-specific START WITH clause to the query's CONNECT BY clause
startWith(String) - Method in interface org.jooq.SelectStartWithStep
Add an Oracle-specific START WITH clause to the query's CONNECT BY clause NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
startWith(String, Object...) - Method in interface org.jooq.SelectStartWithStep
Add an Oracle-specific START WITH clause to the query's CONNECT BY clause NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
statement() - Method in interface org.jooq.BindContext
Retrieve the context's underlying PreparedStatement
statement() - Method in interface org.jooq.ExecuteContext
The PreparedStatement that is being executed or null if the statement is unknown or if there was no statement.
statement(PreparedStatement) - Method in interface org.jooq.ExecuteContext
Override the PreparedStatement that is being executed.
statementType - Variable in class org.jooq.conf.Settings
 
StatementType - Enum in org.jooq.conf
Java class for StatementType.
stddevPop() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
stddevPop(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the population standard deviation of a numeric field: stddev_pop(field) This is known to be supported in any of these RDBMS: DB2 H2 HSQLDB Ingres MySQL Oracle Postgres SQL Server (stdev) Sybase ASE Sybase SQL Anywhere
stddevPopOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
stddevSamp() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
stddevSamp(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sample standard deviation of a numeric field: stddev_samp(field) This is known to be supported in any of these RDBMS: DB2 H2 HSQLDB Ingres MySQL Oracle Postgres SQL Server (stdev) Sybase ASE Sybase SQL Anywhere
stddevSampOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
StopWatch - Class in org.jooq.tools
A time measuring device
StopWatch() - Constructor for class org.jooq.tools.StopWatch
Initialise the stop watch
StopWatchListener - Class in org.jooq.tools
A default ExecuteListener that just logs events to java.util.logging, log4j, or slf4j using the JooqLogger
StopWatchListener() - Constructor for class org.jooq.tools.StopWatchListener
 
store() - Method in class org.jooq.impl.UpdatableRecordImpl
 
Store<E> - Interface in org.jooq
A common base type for Record and ArrayRecord providing common, index-based functionality for storage objects Store implements Attachable, as some stores need a reference to an open JDBC connection to perform some actions on their elements.
store() - Method in interface org.jooq.UpdatableRecord
Store this record back to the database.
stored() - Method in interface org.jooq.Loader
The number of inserted or updated rows
StoreQuery<R extends Record> - Interface in org.jooq
A query storing objects to the database.
storeUsing(TableField<R, ?>...) - Method in class org.jooq.impl.TableRecordImpl
 
storeUsing(TableField<R, ?>...) - Method in interface org.jooq.TableRecord
Store this record back to the database.
STRING - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
StringUtils - Class in org.jooq.tools
Operations on String that are null safe.
sub(Number) - Method in interface org.jooq.Field
An arithmetic expression subtracting value from this.
sub(Field<?>) - Method in interface org.jooq.Field
An arithmetic expression subtracting value from this.
subquery() - Method in interface org.jooq.Context
Whether the current context is rendering a sub-query (nested query)
subquery(boolean) - Method in interface org.jooq.Context
Set the new context value for Context.subquery()
substring(int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
substring(Field<? extends Number>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
substring(int, int) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
substring(Field<? extends Number>, Field<? extends Number>) - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
substring(Field<String>, int) - Static method in class org.jooq.impl.Factory
Get the substring(field, startingPosition) function
substring(Field<String>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the substring(field, startingPosition) function This renders the substr or substring function: substr([field], [startingPosition]) or substring([field], [startingPosition])
substring(Field<String>, int, int) - Static method in class org.jooq.impl.Factory
Get the substring(field, startingPosition, length) function
substring(Field<String>, Field<? extends Number>, Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the substring(field, startingPosition, length) function This renders the substr or substring function: substr([field], [startingPosition], [length]) or substring([field], [startingPosition], [length])
sum() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
sum(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sum over a numeric field: sum(field)
sumDistinct(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sum over a numeric field: sum(distinct field)
sumOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
Support - Annotation Type in org.jooq
A formal declaration of whether any API element is supported by a given SQLDialect The annotation is mainly used in three modes: The annotation is absent on a method.
SybaseDataType<T> - Class in org.jooq.util.sybase
Supported data types for the SQLDialect.SYBASE dialect
SybaseFactory - Class in org.jooq.util.sybase
A SQLDialect.SYBASE specific factory
SybaseFactory(Connection, SchemaMapping) - Constructor for class org.jooq.util.sybase.SybaseFactory
Deprecated. - 2.0.5 - Use SybaseFactory.SybaseFactory(Connection, Settings) instead
SybaseFactory(Connection, Settings) - Constructor for class org.jooq.util.sybase.SybaseFactory
Create a factory with connection and a settings configured
SybaseFactory(Connection) - Constructor for class org.jooq.util.sybase.SybaseFactory
Create a factory with connection
sysConnectByPath(Field<?>, String) - Static method in class org.jooq.impl.Factory
Retrieve the Oracle-specific SYS_CONNECT_BY_PATH(field, separator) function (to be used along with CONNECT BY clauses).
sysContext(String, String) - Static method in class org.jooq.util.oracle.OracleFactory
The Oracle-specific SYS_CONTEXT function
sysContext(String, String, int) - Static method in class org.jooq.util.oracle.OracleFactory
The Oracle-specific SYS_CONTEXT function
SYSNAME - Static variable in class org.jooq.util.ase.ASEDataType
 

T

table(Select<R>) - Static method in class org.jooq.impl.Factory
A synonym for TableLike.asTable().
table(List<?>) - Static method in class org.jooq.impl.Factory
A synonym for Factory.unnest(List)
table(Object[]) - Static method in class org.jooq.impl.Factory
A synonym for Factory.unnest(Object[])
table(ArrayRecord<?>) - Static method in class org.jooq.impl.Factory
A synonym for Factory.unnest(ArrayRecord)
table(Field<?>) - Static method in class org.jooq.impl.Factory
A synonym for Factory.unnest(Field)
table(String) - Static method in class org.jooq.impl.Factory
A PlainSQLTable is a table that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex, but static subqueries or tables from different schemas.
table(String, Object...) - Static method in class org.jooq.impl.Factory
A PlainSQLTable is a table that can contain user-defined plain SQL, because sometimes it is easier to express things directly in SQL, for instance complex, but static subqueries or tables from different schemas.
Table<R extends Record> - Interface in org.jooq
A table to be used in queries
TableField<R extends Record,T> - Interface in org.jooq
A field contained in a table
TableImpl<R extends Record> - Class in org.jooq.impl
A common base type for tables This type is for JOOQ INTERNAL USE only.
TableImpl(String) - Constructor for class org.jooq.impl.TableImpl
 
TableImpl(String, Schema) - Constructor for class org.jooq.impl.TableImpl
 
TableImpl(String, Schema, Table<R>) - Constructor for class org.jooq.impl.TableImpl
 
TableLike<R extends Record> - Interface in org.jooq
An object that can behave like a table (a table-like object)
TableOnConditionStep - Interface in org.jooq
An intermediate (optional) type for the construction of a JOIN clause, where the join criteria is added using an ON clause (with a Condition.
TableOnStep - Interface in org.jooq
An intermediate type for the construction of a JOIN clause, where there must be a join criteria added using an ON clause (with a Condition), or using a USING clause (with a list of Field)
TableRecord<R extends TableRecord<R>> - Interface in org.jooq
A record originating from a single table
TableRecordImpl<R extends TableRecord<R>> - Class in org.jooq.impl
A record implementation for a record originating from a single table This type is for JOOQ INTERNAL USE only.
TableRecordImpl(Table<R>) - Constructor for class org.jooq.impl.TableRecordImpl
 
tables - Variable in class org.jooq.conf.MappedSchema
 
tan() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
tan(Number) - Static method in class org.jooq.impl.Factory
Get the tangent(field) function
tan(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the tangent(field) function This renders the tan function where available: tan([field])
tanh() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
tanh(Number) - Static method in class org.jooq.impl.Factory
Get the hyperbolic tangent function: tanh(field)
tanh(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the hyperbolic tangent function: tanh(field) This renders the tanh function where available: tanh([field]) ... or simulates it elsewhere using exp: (exp([field] * 2) - 1) / (exp([field] * 2) + 1)
TEXT - Static variable in class org.jooq.util.ase.ASEDataType
 
TEXT - Static variable in class org.jooq.util.h2.H2DataType
 
TEXT - Static variable in class org.jooq.util.ingres.IngresDataType
 
TEXT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
TEXT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TEXT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
TEXT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
TEXT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
TID - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIME - Static variable in class org.jooq.impl.SQLDataType
The Types.TIME type
TIME - Static variable in class org.jooq.util.ase.ASEDataType
 
TIME - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
TIME - Static variable in class org.jooq.util.db2.DB2DataType
 
TIME - Static variable in class org.jooq.util.derby.DerbyDataType
 
TIME - Static variable in class org.jooq.util.h2.H2DataType
 
TIME - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
TIME - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIME - Static variable in class org.jooq.util.mysql.MySQLDataType
 
TIME - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIME - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
TIME - Static variable in class org.jooq.util.sybase.SybaseDataType
 
TIMESTAMP - Static variable in class org.jooq.impl.SQLDataType
The Types.TIMESTAMP type
TIMESTAMP - Static variable in class org.jooq.util.ase.ASEDataType
 
TIMESTAMP - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
TIMESTAMP - Static variable in class org.jooq.util.db2.DB2DataType
 
TIMESTAMP - Static variable in class org.jooq.util.derby.DerbyDataType
 
TIMESTAMP - Static variable in class org.jooq.util.h2.H2DataType
 
TIMESTAMP - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
TIMESTAMP - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMESTAMP - Static variable in class org.jooq.util.mysql.MySQLDataType
 
TIMESTAMP - Static variable in class org.jooq.util.oracle.OracleDataType
 
TIMESTAMP - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIMESTAMP - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
TIMESTAMP - Static variable in class org.jooq.util.sybase.SybaseDataType
 
timestampDiff(Timestamp, Timestamp) - Static method in class org.jooq.impl.Factory
Get the timestamp difference as a INTERVAL DAY TO SECOND type This translates into any dialect
timestampDiff(Field<Timestamp>, Timestamp) - Static method in class org.jooq.impl.Factory
Get the timestamp difference as a INTERVAL DAY TO SECOND type This translates into any dialect
timestampDiff(Timestamp, Field<Timestamp>) - Static method in class org.jooq.impl.Factory
Get the timestamp difference as a INTERVAL DAY TO SECOND type This translates into any dialect
timestampDiff(Field<Timestamp>, Field<Timestamp>) - Static method in class org.jooq.impl.Factory
Get the timestamp difference as a INTERVAL DAY TO SECOND type This translates into any dialect
TIMESTAMPTZ - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIMESTAMPWITHLOCALTIMEZONE - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMESTAMPWITHOUTTIMEZONE - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMESTAMPWITHOUTTIMEZONE - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIMESTAMPWITHTIMEZONE - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMESTAMPWITHTIMEZONE - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIMESTAMPWITHTIMEZONE - Static variable in class org.jooq.util.sybase.SybaseDataType
 
TIMETZ - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIMEWITHLOCALTIMEZONE - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMEWITHOUTTIMEZONE - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMEWITHOUTTIMEZONE - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TIMEWITHTIMEZONE - Static variable in class org.jooq.util.ingres.IngresDataType
 
TIMEWITHTIMEZONE - Static variable in class org.jooq.util.postgres.PostgresDataType
 
TINYBLOB - Static variable in class org.jooq.util.h2.H2DataType
 
TINYBLOB - Static variable in class org.jooq.util.mysql.MySQLDataType
 
TINYINT - Static variable in class org.jooq.impl.SQLDataType
The Types.TINYINT type
TINYINT - Static variable in class org.jooq.util.ase.ASEDataType
 
TINYINT - Static variable in class org.jooq.util.h2.H2DataType
 
TINYINT - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
TINYINT - Static variable in class org.jooq.util.ingres.IngresDataType
 
TINYINT - Static variable in class org.jooq.util.mysql.MySQLDataType
 
TINYINT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
TINYINT - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
TINYINT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
TINYINTUNSIGNED - Static variable in class org.jooq.impl.SQLDataType
The unsigned Types.TINYINT type
TINYINTUNSIGNED - Static variable in class org.jooq.util.mysql.MySQLDataType
 
TINYTEXT - Static variable in class org.jooq.util.h2.H2DataType
 
to(U) - Method in interface org.jooq.Converter
Convert a user object to a database object
to(U) - Method in class org.jooq.impl.EnumConverter
Subclasses may override this method to provide a custom reverse mapping implementation Convert a user object to a database object
toBigInteger() - Method in class org.jooq.tools.unsigned.UNumber
Get this number as a BigInteger.
toCamelCase(String) - Static method in class org.jooq.tools.StringUtils
Convert a string to camel case
toCamelCaseLC(String) - Static method in class org.jooq.tools.StringUtils
Convert a string to camel case starting with a lower case letter
toDayToSecond(Object) - Static method in class org.jooq.util.postgres.PGIntervalConverter
Convert a Postgres interval to a jOOQ DAY TO SECOND interval
toJSONString(List<?>) - Static method in class org.jooq.tools.json.JSONArray
Convert a list to JSON text.
toJSONString(Map<?, ?>) - Static method in class org.jooq.tools.json.JSONObject
Convert a map to JSON text.
toJSONString(Object) - Static method in class org.jooq.tools.json.JSONValue
Convert an object to JSON text.
toPGInterval(DayToSecond) - Static method in class org.jooq.util.postgres.PGIntervalConverter
Convert a jOOQ DAY TO SECOND interval to a Postgres representation
toPGInterval(YearToMonth) - Static method in class org.jooq.util.postgres.PGIntervalConverter
Convert a jOOQ YEAR TO MONTH interval to a Postgres representation
toSQL() - Method in enum org.jooq.Comparator
 
toSQL() - Method in enum org.jooq.DatePart
 
toSQL(RenderContext) - Method in class org.jooq.impl.AbstractRoutine
 
toSQL(RenderContext) - Method in class org.jooq.impl.CustomCondition
Subclasses must implement this method
Render this QueryPart to a SQL string contained in context.sql().
toSQL(RenderContext) - Method in class org.jooq.impl.CustomField
Subclasses must implement this method
Render this QueryPart to a SQL string contained in context.sql().
toSQL(RenderContext) - Method in class org.jooq.impl.PackageImpl
 
toSQL(RenderContext) - Method in class org.jooq.impl.SchemaImpl
 
toSQL(RenderContext) - Method in class org.jooq.impl.TableImpl
 
toSQL(RenderContext) - Method in class org.jooq.impl.UDTImpl
 
toSQL() - Method in enum org.jooq.JoinType
 
toSQL(RenderContext) - Method in interface org.jooq.QueryPartInternal
Render this QueryPart to a SQL string contained in context.sql().
toSQL() - Method in enum org.jooq.SortOrder
 
toString() - Method in class org.jooq.impl.AbstractDataType
 
toString() - Method in class org.jooq.impl.ArrayRecordImpl
 
toString() - Method in class org.jooq.impl.Factory
 
toString() - Method in class org.jooq.SchemaMapping
Deprecated.  
toString(String, Object) - Static method in class org.jooq.tools.json.JSONObject
 
toString() - Method in class org.jooq.tools.reflect.Reflect
toString() - Method in class org.jooq.tools.unsigned.UByte
 
toString() - Method in class org.jooq.tools.unsigned.UInteger
 
toString() - Method in class org.jooq.tools.unsigned.ULong
 
toString() - Method in class org.jooq.tools.unsigned.UShort
 
toString() - Method in class org.jooq.types.DayToSecond
 
toString() - Method in class org.jooq.types.YearToMonth
 
toType() - Method in interface org.jooq.Converter
The user type
toType() - Method in class org.jooq.impl.EnumConverter
 
toYearToMonth(Object) - Static method in class org.jooq.util.postgres.PGIntervalConverter
Convert a Postgres interval to a jOOQ YEAR TO MONTH interval
trace(Object) - Method in class org.jooq.tools.JooqLogger
 
trace(Object, Object) - Method in class org.jooq.tools.JooqLogger
 
trace(Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
trace(Object, Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
trim() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
trim(String) - Static method in class org.jooq.impl.Factory
Get the trim(field) function
trim(Field<String>) - Static method in class org.jooq.impl.Factory
Get the trim(field) function This renders the trim function where available: trim([field]) ... or simulates it elsewhere using rtrim and ltrim: ltrim(rtrim([field]))
TRUE_VALUES - Static variable in class org.jooq.tools.Convert
 
trueCondition() - Static method in class org.jooq.impl.Factory
Return a Condition that will always evaluate to true
truncate(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DSL truncate statement.
truncate(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DSL truncate statement.
Truncate<R extends TableRecord<R>> - Interface in org.jooq
A Query that can truncate a table in the database.
two() - Static method in class org.jooq.impl.Factory
A 2 literal.
type() - Method in interface org.jooq.ExecuteContext
The type of database interaction that is being executed
type() - Method in class org.jooq.tools.reflect.Reflect
Get the type of the wrapped object.
Type<R extends Record> - Interface in org.jooq
A type (udt or table) that represents any database row

U

UByte - Class in org.jooq.tools.unsigned
The unsigned byte type
UByte(short) - Constructor for class org.jooq.tools.unsigned.UByte
Create an unsigned byte
UByte(byte) - Constructor for class org.jooq.tools.unsigned.UByte
Create an unsigned byte by masking it with 0xFF i.e.
UByte(String) - Constructor for class org.jooq.tools.unsigned.UByte
Create an unsigned byte
ubyte(String) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned byte
ubyte(byte) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned byte by masking it with 0xFF i.e.
ubyte(short) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned byte
UDT<R extends UDTRecord<R>> - Interface in org.jooq
UDT definition
UDTField<R extends UDTRecord<R>,T> - Interface in org.jooq
A field contained in a UDT
UDTImpl<R extends UDTRecord<R>> - Class in org.jooq.impl
A common base type for UDT's This type is for JOOQ INTERNAL USE only.
UDTImpl(String, Schema) - Constructor for class org.jooq.impl.UDTImpl
 
UDTRecord<R extends UDTRecord<R>> - Interface in org.jooq
An object holding data of a UDT
UDTRecordImpl<R extends UDTRecord<R>> - Class in org.jooq.impl
A record implementation for a record originating from a single UDT This type is for JOOQ INTERNAL USE only.
UDTRecordImpl(UDT<R>) - Constructor for class org.jooq.impl.UDTRecordImpl
 
uint(String) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned int
uint(int) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned int by masking it with 0xFFFFFFFF i.e.
uint(long) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned int
UInteger - Class in org.jooq.tools.unsigned
The unsigned int type
UInteger(long) - Constructor for class org.jooq.tools.unsigned.UInteger
Create an unsigned int
UInteger(int) - Constructor for class org.jooq.tools.unsigned.UInteger
Create an unsigned int by masking it with 0xFFFFFFFF i.e.
UInteger(String) - Constructor for class org.jooq.tools.unsigned.UInteger
Create an unsigned int
ULong - Class in org.jooq.tools.unsigned
The unsigned long type
ULong(BigInteger) - Constructor for class org.jooq.tools.unsigned.ULong
Create an unsigned long
ULong(long) - Constructor for class org.jooq.tools.unsigned.ULong
Create an unsigned long by masking it with 0xFFFFFFFFFFFFFFFF i.e.
ULong(String) - Constructor for class org.jooq.tools.unsigned.ULong
Create an unsigned long
ulong(String) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned long
ulong(long) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned long by masking it with 0xFFFFFFFFFFFFFFFF i.e.
ulong(BigInteger) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned long
uncompress(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific UNCOMPRESS() function
uncompress(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific UNCOMPRESS() function
uncompressedLength(String) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific UNCOMPRESSED_LENGTH() function
uncompressedLength(Field<String>) - Static method in class org.jooq.util.mysql.MySQLFactory
Get the MySQL-specific UNCOMPRESSED_LENGTH() function
UNICHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
union(Select<R>) - Method in interface org.jooq.Select
Combine with other selects
unionAll(Select<R>) - Method in interface org.jooq.Select
Combine with other selects
UNIQUEIDENTIFIER - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
UNIQUEIDENTIFIER - Static variable in class org.jooq.util.sybase.SybaseDataType
 
UNIQUEIDENTIFIERSTR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
UniqueKey<R extends Record> - Interface in org.jooq
A UniqueKey is an object representing a UNIQUE KEY or a PRIMARY KEY.
UNITEXT - Static variable in class org.jooq.util.ase.ASEDataType
 
UNIVARCHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
unnest(List<?>) - Static method in class org.jooq.impl.Factory
Create a table from a list of values This is equivalent to the TABLE function for H2, or the UNNEST function in HSQLDB and Postgres For Oracle, use Factory.table(ArrayRecord) instead, as Oracle knows only typed arrays In all other dialects, unnesting of arrays is simulated using several UNION ALL connected subqueries.
unnest(Object[]) - Static method in class org.jooq.impl.Factory
Create a table from an array of values This is equivalent to the TABLE function for H2, or the UNNEST function in HSQLDB and Postgres For Oracle, use Factory.table(ArrayRecord) instead, as Oracle knows only typed arrays In all other dialects, unnesting of arrays is simulated using several UNION ALL connected subqueries.
unnest(ArrayRecord<?>) - Static method in class org.jooq.impl.Factory
Create a table from an array of values This wraps the argument array in a TABLE function for Oracle.
unnest(Field<?>) - Static method in class org.jooq.impl.Factory
Create a table from a field.
Unsigned - Class in org.jooq.tools.unsigned
A utility class for static access to unsigned number functionality.
UNSIGNEDBIGINT - Static variable in class org.jooq.util.ase.ASEDataType
 
UNSIGNEDBIGINT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
UNSIGNEDBIGINT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
UNSIGNEDINT - Static variable in class org.jooq.util.ase.ASEDataType
 
UNSIGNEDINT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
UNSIGNEDSMALLLINT - Static variable in class org.jooq.util.ase.ASEDataType
 
UNSIGNEDSMALLLINT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
UNumber - Class in org.jooq.tools.unsigned
A base type for unsigned numbers.
UNumber() - Constructor for class org.jooq.tools.unsigned.UNumber
 
Updatable<R extends Record> - Interface in org.jooq
A common interface for objects (tables, records) that can be updated or deleted using their primary keys.
UpdatableRecord<R extends UpdatableRecord<R>> - Interface in org.jooq
A common interface for records that can be stored back to the database again.
UpdatableRecordImpl<R extends UpdatableRecord<R>> - Class in org.jooq.impl
A record implementation for a record holding a primary key This type is for JOOQ INTERNAL USE only.
UpdatableRecordImpl(UpdatableTable<R>) - Constructor for class org.jooq.impl.UpdatableRecordImpl
 
UpdatableTable<R extends Record> - Interface in org.jooq
A common interface for tables whose records can be stored back to the database again.
UpdatableTableImpl<R extends Record> - Class in org.jooq.impl
A table implementation for a table holding a primary key This type is for JOOQ INTERNAL USE only.
UpdatableTableImpl(String) - Constructor for class org.jooq.impl.UpdatableTableImpl
 
UpdatableTableImpl(String, Schema) - Constructor for class org.jooq.impl.UpdatableTableImpl
 
UpdatableTableImpl(String, Schema, Table<R>) - Constructor for class org.jooq.impl.UpdatableTableImpl
 
update(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new DSL update statement.
update(Table<R>) - Method in class org.jooq.impl.Factory
Create a new DSL update statement.
Update<R extends Record> - Interface in org.jooq
A Query that can update data in the database.
UpdateConditionStep<R extends Record> - Interface in org.jooq
This type is used for the Update's DSL API.
UpdateFinalStep<R extends Record> - Interface in org.jooq
This type is used for the Update's DSL API.
updateQuery(Table<R>) - Method in interface org.jooq.FactoryOperations
Create a new UpdateQuery
updateQuery(Table<R>) - Method in class org.jooq.impl.Factory
Create a new UpdateQuery
UpdateQuery<R extends Record> - Interface in org.jooq
A query for data updating
UpdateSetMoreStep<R extends Record> - Interface in org.jooq
This type is used for the Update's DSL API.
UpdateSetStep<R extends Record> - Interface in org.jooq
This type is used for the Update's DSL API.
UpdateWhereStep<R extends Record> - Interface in org.jooq
This type is used for the Update's DSL API.
upper() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
upper(String) - Static method in class org.jooq.impl.Factory
Get the upper(field) function
upper(Field<String>) - Static method in class org.jooq.impl.Factory
Get the upper(field) function This renders the upper function in all dialects: upper([field])
use(Schema) - Method in interface org.jooq.FactoryOperations
Use a schema as the default schema of the underlying connection.
use(String) - Method in interface org.jooq.FactoryOperations
Use a schema as the default schema of the underlying connection.
use(Schema) - Method in class org.jooq.impl.Factory
Use a schema as the default schema of the underlying connection.
use(String) - Method in class org.jooq.impl.Factory
Use a schema as the default schema of the underlying connection.
use(Schema) - Method in class org.jooq.SchemaMapping
Deprecated. Set a schema as the default schema.
use(String) - Method in class org.jooq.SchemaMapping
Deprecated. Set a schema as the default schema.
ushort(String) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned short
ushort(short) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned short by masking it with 0xFFFF i.e.
ushort(int) - Static method in class org.jooq.tools.unsigned.Unsigned
Create an unsigned short
UShort - Class in org.jooq.tools.unsigned
The unsigned short type
UShort(int) - Constructor for class org.jooq.tools.unsigned.UShort
Create an unsigned short
UShort(short) - Constructor for class org.jooq.tools.unsigned.UShort
Create an unsigned short by masking it with 0xFFFF i.e.
UShort(String) - Constructor for class org.jooq.tools.unsigned.UShort
Create an unsigned short
using(TableLike<?>) - Method in interface org.jooq.MergeUsingStep
Add the USING clause to the MERGE statement
using(Field<?>...) - Method in interface org.jooq.SelectOnStep
Join the previous table with the USING(column [, column...])
using(Collection<? extends Field<?>>) - Method in interface org.jooq.SelectOnStep
Join the previous table with the USING(column [, column...])
using(Field<?>...) - Method in interface org.jooq.TableOnStep
Join the table with the USING(column [, column...])
using(Collection<? extends Field<?>>) - Method in interface org.jooq.TableOnStep
Join the table with the USING(column [, column...])
usingDual() - Method in interface org.jooq.MergeUsingStep
Add a dummy USING clause to the MERGE statement This results in USING(SELECT 1 FROM DUAL) for most RDBMS, or in USING(SELECT 1) AS [dummy_table(dummy_field)] in SQL Server, where derived tables need to be aliased.
UUID - Static variable in class org.jooq.util.h2.H2DataType
 

V

val(T) - Static method in class org.jooq.impl.Factory
Get a bind value jOOQ tries to derive the RDBMS DataType from the provided Java type <T>.
val(Object, Class<? extends T>) - Static method in class org.jooq.impl.Factory
Get a bind value with an associated type, taken from a field
val(Object, Field<T>) - Static method in class org.jooq.impl.Factory
Get a bind value with an associated type, taken from a field
val(Object, DataType<T>) - Static method in class org.jooq.impl.Factory
Get a bind value with an associated type This will try to bind value as type in a PreparedStatement.
vals(Object...) - Static method in class org.jooq.impl.Factory
Get a list of bind values and fields
value(V) - Method in interface org.jooq.Case
This construct can be used to create expressions of the type CASE value WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'three' END
value(Field<V>) - Method in interface org.jooq.Case
This construct can be used to create expressions of the type CASE value WHEN 1 THEN 'one' WHEN 2 THEN 'two' ELSE 'three' END
value() - Method in enum org.jooq.conf.RenderKeywordStyle
 
value() - Method in enum org.jooq.conf.RenderNameStyle
 
value() - Method in enum org.jooq.conf.StatementType
 
value(T) - Static method in class org.jooq.impl.Factory
A synonym for Factory.val(Object) to be used in Scala and Groovy, where val is a reserved keyword.
value(Object, Class<? extends T>) - Static method in class org.jooq.impl.Factory
A synonym for Factory.val(Object) to be used in Scala and Groovy, where val is a reserved keyword.
value(Object, Field<T>) - Static method in class org.jooq.impl.Factory
A synonym for Factory.val(Object) to be used in Scala and Groovy, where val is a reserved keyword.
value(Object, DataType<T>) - Static method in class org.jooq.impl.Factory
A synonym for Factory.val(Object) to be used in Scala and Groovy, where val is a reserved keyword.
valueOf(String) - Static method in enum org.jooq.Comparator
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.conf.RenderKeywordStyle
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.conf.RenderNameStyle
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.conf.StatementType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.DatePart
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.ExecuteType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.JoinType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.Operator
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.RenderContext.CastMode
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.SortOrder
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jooq.SQLDialect
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in class org.jooq.tools.unsigned.UByte
Create an unsigned byte
valueOf(byte) - Static method in class org.jooq.tools.unsigned.UByte
Create an unsigned byte by masking it with 0xFF i.e.
valueOf(String) - Static method in class org.jooq.tools.unsigned.UInteger
Create an unsigned int
valueOf(int) - Static method in class org.jooq.tools.unsigned.UInteger
Create an unsigned int by masking it with 0xFFFFFFFF i.e.
valueOf(String) - Static method in class org.jooq.tools.unsigned.ULong
Create an unsigned long
valueOf(long) - Static method in class org.jooq.tools.unsigned.ULong
Create an unsigned long by masking it with 0xFFFFFFFFFFFFFFFF i.e.
valueOf(String) - Static method in class org.jooq.tools.unsigned.UShort
Create an unsigned short
valueOf(short) - Static method in class org.jooq.tools.unsigned.UShort
Create an unsigned short by masking it with 0xFFFF i.e.
valueOf(String) - Static method in class org.jooq.types.DayToSecond
Parse a string representation of a INTERVAL DAY TO SECOND
valueOf(double) - Static method in class org.jooq.types.DayToSecond
Load a Double representation of a INTERVAL DAY TO SECOND
valueOf(String) - Static method in class org.jooq.types.YearToMonth
Parse a string representation of a INTERVAL YEAR TO MONTH
values() - Static method in enum org.jooq.Comparator
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.conf.RenderKeywordStyle
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.conf.RenderNameStyle
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.conf.StatementType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.DatePart
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.ExecuteType
Returns an array containing the constants of this enum type, in the order they are declared.
values(Object...) - Method in interface org.jooq.InsertSetStep
Add values to the insert statement with implicit field names
values(Field<?>...) - Method in interface org.jooq.InsertSetStep
Add values to the insert statement with implicit field names
values(Collection<?>) - Method in interface org.jooq.InsertSetStep
Add values to the insert statement with implicit field names
values(Object...) - Method in interface org.jooq.InsertValuesStep
Add values to the insert statement
values(Field<?>...) - Method in interface org.jooq.InsertValuesStep
Add values to the insert statement
values(Collection<?>) - Method in interface org.jooq.InsertValuesStep
Add values to the insert statement
values() - Static method in enum org.jooq.JoinType
Returns an array containing the constants of this enum type, in the order they are declared.
values(Object...) - Method in interface org.jooq.MergeNotMatchedValuesStep
Set VALUES for INSERT in the MERGE statement's WHEN NOT MATCHED THEN INSERT clause.
values(Field<?>...) - Method in interface org.jooq.MergeNotMatchedValuesStep
Set VALUES for INSERT in the MERGE statement's WHEN NOT MATCHED THEN INSERT clause.
values(Collection<?>) - Method in interface org.jooq.MergeNotMatchedValuesStep
Set VALUES for INSERT in the MERGE statement's WHEN NOT MATCHED THEN INSERT clause.
values() - Static method in enum org.jooq.Operator
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.RenderContext.CastMode
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.SortOrder
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jooq.SQLDialect
Returns an array containing the constants of this enum type, in the order they are declared.
VARBINARY - Static variable in class org.jooq.impl.SQLDataType
The Types.VARBINARY type
VARBINARY - Static variable in class org.jooq.util.ase.ASEDataType
 
VARBINARY - Static variable in class org.jooq.util.h2.H2DataType
 
VARBINARY - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
VARBINARY - Static variable in class org.jooq.util.ingres.IngresDataType
 
VARBINARY - Static variable in class org.jooq.util.mysql.MySQLDataType
 
VARBINARY - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
VARBINARY - Static variable in class org.jooq.util.sybase.SybaseDataType
 
VARBIT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
VARBIT - Static variable in class org.jooq.util.sybase.SybaseDataType
 
VARBYTE - Static variable in class org.jooq.util.ingres.IngresDataType
 
VARCHAR - Static variable in class org.jooq.impl.SQLDataType
The Types.VARCHAR type
VARCHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
VARCHAR - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
VARCHAR - Static variable in class org.jooq.util.db2.DB2DataType
 
VARCHAR - Static variable in class org.jooq.util.derby.DerbyDataType
 
VARCHAR - Static variable in class org.jooq.util.h2.H2DataType
 
VARCHAR - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
VARCHAR - Static variable in class org.jooq.util.ingres.IngresDataType
 
VARCHAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
VARCHAR - Static variable in class org.jooq.util.oracle.OracleDataType
 
VARCHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
VARCHAR - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
VARCHAR - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
VARCHAR - Static variable in class org.jooq.util.sybase.SybaseDataType
 
VARCHAR2 - Static variable in class org.jooq.util.h2.H2DataType
 
VARCHAR2 - Static variable in class org.jooq.util.oracle.OracleDataType
 
VARCHAR_CASESENSITIVE - Static variable in class org.jooq.util.h2.H2DataType
 
VARCHAR_IGNORECASE - Static variable in class org.jooq.util.h2.H2DataType
 
VARCHARFORBITDATA - Static variable in class org.jooq.util.db2.DB2DataType
 
VARCHARFORBITDATA - Static variable in class org.jooq.util.derby.DerbyDataType
 
VARCHARIGNORECASE - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
VARGRAPHIC - Static variable in class org.jooq.util.db2.DB2DataType
 
varPop() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
varPop(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the population variance of a numeric field: var_pop(field) This is known to be supported in any of these RDBMS: DB2 H2 HSQLDB Ingres MySQL Oracle Postgres SQL Server (stdev) Sybase ASE Sybase SQL Anywhere
varPopOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
varSamp() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
varSamp(Field<? extends Number>) - Static method in class org.jooq.impl.Factory
Get the sample variance of a numeric field: var_samp(field) This is known to be supported in any of these RDBMS: H2 HSQLDB Ingres MySQL Oracle Postgres SQL Server (var) Sybase SQL Anywhere
varSampOver() - Method in interface org.jooq.Field
This method is part of the pre-2.0 API.
VARYINGCHARACTER - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
VERSION - Static variable in class org.jooq.Constants
The latest jOOQ version

W

wait(int) - Method in interface org.jooq.SelectForUpdateWaitStep
Add a WAIT clause to the FOR UPDATE clause at the end of the query.
wait(int) - Method in interface org.jooq.SimpleSelectForUpdateWaitStep
Add a WAIT clause to the FOR UPDATE clause at the end of the query.
warn(Object) - Method in class org.jooq.tools.JooqLogger
 
warn(Object, Object) - Method in class org.jooq.tools.JooqLogger
 
warn(Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
warn(Object, Object, Throwable) - Method in class org.jooq.tools.JooqLogger
 
when(Condition, T) - Method in interface org.jooq.Case
This construct can be used to create expressions of the type CASE WHEN x < 1 THEN 'one' WHEN x >= 2 THEN 'two' ELSE 'three' END Instances of Case are created through the
when(Condition, Field<T>) - Method in interface org.jooq.Case
This construct can be used to create expressions of the type CASE WHEN x < 1 THEN 'one' WHEN x >= 2 THEN 'two' ELSE 'three' END Instances of Case are created through the
when(Condition, T) - Method in interface org.jooq.CaseConditionStep
Compare a condition to the already constructed case statement, return result if the condition holds true
when(Condition, Field<T>) - Method in interface org.jooq.CaseConditionStep
Compare a condition to the already constructed case statement, return result if the condition holds true
when(V, T) - Method in interface org.jooq.CaseValueStep
Compare a value to the already constructed case statement, return result if values are equal.
when(V, Field<T>) - Method in interface org.jooq.CaseValueStep
Compare a value to the already constructed case statement, return result if values are equal.
when(Field<V>, T) - Method in interface org.jooq.CaseValueStep
Compare a value to the already constructed case statement, return result if values are equal.
when(Field<V>, Field<T>) - Method in interface org.jooq.CaseValueStep
Compare a value to the already constructed case statement, return result if values are equal.
when(V, T) - Method in interface org.jooq.CaseWhenStep
Compare a value to the already constructed case statement, return result if values are equal.
when(V, Field<T>) - Method in interface org.jooq.CaseWhenStep
Compare a value to the already constructed case statement, return result if values are equal.
when(Field<V>, T) - Method in interface org.jooq.CaseWhenStep
Compare a value to the already constructed case statement, return result if values are equal.
when(Field<V>, Field<T>) - Method in interface org.jooq.CaseWhenStep
Compare a value to the already constructed case statement, return result if values are equal.
whenMatchedThenUpdate() - Method in interface org.jooq.MergeMatchedStep
Add the WHEN MATCHED THEN UPDATE clause to the MERGE statement
whenNotMatchedThenInsert() - Method in interface org.jooq.MergeNotMatchedStep
Add the WHEN NOT MATCHED THEN INSERT clause to the MERGE statement.
whenNotMatchedThenInsert(Field<?>...) - Method in interface org.jooq.MergeNotMatchedStep
Add the WHEN NOT MATCHED THEN INSERT clause to the MERGE statement
whenNotMatchedThenInsert(Collection<? extends Field<?>>) - Method in interface org.jooq.MergeNotMatchedStep
Add the WHEN MATCHED THEN UPDATE clause to the MERGE statement
where(Condition...) - Method in interface org.jooq.DeleteWhereStep
Add conditions to the query
where(Collection<Condition>) - Method in interface org.jooq.DeleteWhereStep
Add conditions to the query
where(String) - Method in interface org.jooq.DeleteWhereStep
Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(String, Object...) - Method in interface org.jooq.DeleteWhereStep
Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(Condition) - Method in interface org.jooq.MergeMatchedWhereStep
Add an additional WHERE clause to the preceding WHEN MATCHED THEN UPDATE clause.
where(Condition) - Method in interface org.jooq.MergeNotMatchedWhereStep
Add an additional WHERE clause to the preceding WHEN NOT MATCHED THEN INSERT clause.
where(Condition...) - Method in interface org.jooq.SelectWhereStep
Add a WHERE clause to the query
where(Collection<Condition>) - Method in interface org.jooq.SelectWhereStep
Add a WHERE clause to the query
where(String) - Method in interface org.jooq.SelectWhereStep
Add a WHERE clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(String, Object...) - Method in interface org.jooq.SelectWhereStep
Add a WHERE clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(Condition...) - Method in interface org.jooq.SimpleSelectWhereStep
Add a WHERE clause to the query
where(Collection<Condition>) - Method in interface org.jooq.SimpleSelectWhereStep
Add a WHERE clause to the query
where(String) - Method in interface org.jooq.SimpleSelectWhereStep
Add a WHERE clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(String, Object...) - Method in interface org.jooq.SimpleSelectWhereStep
Add a WHERE clause to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(Condition...) - Method in interface org.jooq.UpdateWhereStep
Add conditions to the query
where(Collection<Condition>) - Method in interface org.jooq.UpdateWhereStep
Add conditions to the query
where(String) - Method in interface org.jooq.UpdateWhereStep
Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
where(String, Object...) - Method in interface org.jooq.UpdateWhereStep
Add conditions to the query NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity.
whereExists(Select<?>) - Method in interface org.jooq.DeleteWhereStep
Add an EXISTS clause to the query
whereExists(Select<?>) - Method in interface org.jooq.SelectWhereStep
Add a WHERE EXISTS clause to the query
whereExists(Select<?>) - Method in interface org.jooq.SimpleSelectWhereStep
Add a WHERE EXISTS clause to the query
whereExists(Select<?>) - Method in interface org.jooq.UpdateWhereStep
Add an EXISTS clause to the query
whereNotExists(Select<?>) - Method in interface org.jooq.DeleteWhereStep
Add a NOT EXISTS clause to the query
whereNotExists(Select<?>) - Method in interface org.jooq.SelectWhereStep
Add a WHERE NOT EXISTS clause to the query
whereNotExists(Select<?>) - Method in interface org.jooq.SimpleSelectWhereStep
Add a WHERE NOT EXISTS clause to the query
whereNotExists(Select<?>) - Method in interface org.jooq.UpdateWhereStep
Add a NOT EXISTS clause to the query
WindowFinalStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
WindowIgnoreNullsStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
WindowOrderByStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
WindowOverStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
WindowPartitionByStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
WindowRowsAndStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
WindowRowsStep<T> - Interface in org.jooq
This type is used for the window function DSL API.
withDefaultSchema(String) - Method in class org.jooq.conf.RenderMapping
 
withExecuteListeners(String...) - Method in class org.jooq.conf.Settings
 
withExecuteListeners(Collection<String>) - Method in class org.jooq.conf.Settings
 
withExecuteLogging(Boolean) - Method in class org.jooq.conf.Settings
 
withinGroupOrderBy(Field<?>...) - Method in interface org.jooq.OrderedAggregateFunction
Add an WITHIN GROUP (ORDER BY ..)
withinGroupOrderBy(SortField<?>...) - Method in interface org.jooq.OrderedAggregateFunction
Add an WITHIN GROUP (ORDER BY ..)
withinGroupOrderBy(Collection<SortField<?>>) - Method in interface org.jooq.OrderedAggregateFunction
Add an WITHIN GROUP (ORDER BY ..)
withInput(String) - Method in class org.jooq.conf.MappedSchema
 
withInput(String) - Method in class org.jooq.conf.MappedTable
 
withOutput(String) - Method in class org.jooq.conf.MappedSchema
 
withOutput(String) - Method in class org.jooq.conf.MappedTable
 
withRenderFormatted(Boolean) - Method in class org.jooq.conf.Settings
 
withRenderKeywordStyle(RenderKeywordStyle) - Method in class org.jooq.conf.Settings
 
withRenderMapping(RenderMapping) - Method in class org.jooq.conf.Settings
 
withRenderNameStyle(RenderNameStyle) - Method in class org.jooq.conf.Settings
 
withSchemata(MappedSchema...) - Method in class org.jooq.conf.RenderMapping
 
withSchemata(Collection<MappedSchema>) - Method in class org.jooq.conf.RenderMapping
 
withStatementType(StatementType) - Method in class org.jooq.conf.Settings
 
withTables(MappedTable...) - Method in class org.jooq.conf.MappedSchema
 
withTables(Collection<MappedTable>) - Method in class org.jooq.conf.MappedSchema
 
writeJSONString(List<?>, Writer) - Static method in class org.jooq.tools.json.JSONArray
Encode a list into JSON text and write it to out.
writeJSONString(Map<?, ?>, Writer) - Static method in class org.jooq.tools.json.JSONObject
Encode a map into JSON text and write it to out.
writeJSONString(Object, Writer) - Static method in class org.jooq.tools.json.JSONValue
Encode an object into JSON text and write it to out.
writeSQL(SQLOutput) - Method in class org.jooq.impl.UDTRecordImpl
 
writeToSQLOutput(SQLOutput, Field<T>, T) - Static method in class org.jooq.impl.FieldTypeHelper
 
writeToSQLOutput(SQLOutput, Class<? extends T>, T) - Static method in class org.jooq.impl.FieldTypeHelper
 

X

XID - Static variable in class org.jooq.util.postgres.PostgresDataType
 
XML - Static variable in class org.jooq.util.db2.DB2DataType
 
XML - Static variable in class org.jooq.util.sybase.SybaseDataType
 

Y

year(Date) - Static method in class org.jooq.impl.Factory
Get the year part of a date This is the same as calling Factory.extract(java.util.Date, DatePart) with DatePart.YEAR
year(Field<? extends Date>) - Static method in class org.jooq.impl.Factory
Get the year part of a date This is the same as calling Factory.extract(Field, DatePart) with DatePart.YEAR
YEAR - Static variable in class org.jooq.util.h2.H2DataType
 
YEAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
YearToMonth - Class in org.jooq.types
An implementation for the SQL standard INTERVAL YEAR TO MONTH data type.
YearToMonth(int) - Constructor for class org.jooq.types.YearToMonth
Create a new year-month interval.
YearToMonth(int, int) - Constructor for class org.jooq.types.YearToMonth
Create a new year-month interval.

Z

zero() - Static method in class org.jooq.impl.Factory
A 0 literal.

_

__BIGINT - Static variable in class org.jooq.util.oracle.OracleDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.ase.ASEDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.db2.DB2DataType
 
__BIGINTEGER - Static variable in class org.jooq.util.derby.DerbyDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.h2.H2DataType
 
__BIGINTEGER - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.ingres.IngresDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.oracle.OracleDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__BIGINTEGER - Static variable in class org.jooq.util.sybase.SybaseDataType
 
__BINARY - Static variable in class org.jooq.util.db2.DB2DataType
 
__BINARY - Static variable in class org.jooq.util.derby.DerbyDataType
 
__BINARY - Static variable in class org.jooq.util.oracle.OracleDataType
 
__BINARY - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__BINARY - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
__BIT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__BIT - Static variable in class org.jooq.util.db2.DB2DataType
 
__BIT - Static variable in class org.jooq.util.derby.DerbyDataType
 
__BIT - Static variable in class org.jooq.util.oracle.OracleDataType
 
__BIT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__BIT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
__BLOB - Static variable in class org.jooq.util.ase.ASEDataType
 
__BLOB - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__BLOB - Static variable in class org.jooq.util.sybase.SybaseDataType
 
__BOOL - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__BOOLEAN - Static variable in class org.jooq.util.ase.ASEDataType
 
__BOOLEAN - Static variable in class org.jooq.util.db2.DB2DataType
 
__BOOLEAN - Static variable in class org.jooq.util.oracle.OracleDataType
 
__BOOLEAN - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__BOOLEAN - Static variable in class org.jooq.util.sybase.SybaseDataType
 
__DOUBLE - Static variable in class org.jooq.util.oracle.OracleDataType
 
__DOUBLE - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__FLOAT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__FLOAT - Static variable in class org.jooq.util.oracle.OracleDataType
 
__FLOAT - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
__INTEGER - Static variable in class org.jooq.util.oracle.OracleDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.ase.ASEDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.db2.DB2DataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.derby.DerbyDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.h2.H2DataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.oracle.OracleDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
__LONGNVARCHAR - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.ase.ASEDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.db2.DB2DataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.derby.DerbyDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.oracle.OracleDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__LONGVARBINARY - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__LONGVARCHAR - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__LONGVARCHAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__LONGVARCHAR - Static variable in class org.jooq.util.oracle.OracleDataType
 
__LONGVARCHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__LONGVARCHAR - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__NCHAR - Static variable in class org.jooq.util.db2.DB2DataType
 
__NCHAR - Static variable in class org.jooq.util.derby.DerbyDataType
 
__NCHAR - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
__NCHAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__NCHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__NCLOB - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__NCLOB - Static variable in class org.jooq.util.db2.DB2DataType
 
__NCLOB - Static variable in class org.jooq.util.derby.DerbyDataType
 
__NCLOB - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
__NCLOB - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__NCLOB - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__NCLOB - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
__NCLOB - Static variable in class org.jooq.util.sqlserver.SQLServerDataType
 
__NUMERIC - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__NUMERIC - Static variable in class org.jooq.util.db2.DB2DataType
 
__NUMERIC - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__NVARCHAR - Static variable in class org.jooq.util.db2.DB2DataType
 
__NVARCHAR - Static variable in class org.jooq.util.derby.DerbyDataType
 
__NVARCHAR - Static variable in class org.jooq.util.hsqldb.HSQLDBDataType
 
__NVARCHAR - Static variable in class org.jooq.util.mysql.MySQLDataType
 
__NVARCHAR - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__REAL - Static variable in class org.jooq.util.oracle.OracleDataType
 
__RESULT - Static variable in class org.jooq.util.h2.H2DataType
 
__SMALLINT - Static variable in class org.jooq.util.oracle.OracleDataType
 
__TIME - Static variable in class org.jooq.util.oracle.OracleDataType
 
__TIME - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 
__TINYINT - Static variable in class org.jooq.util.cubrid.CUBRIDDataType
 
__TINYINT - Static variable in class org.jooq.util.db2.DB2DataType
 
__TINYINT - Static variable in class org.jooq.util.derby.DerbyDataType
 
__TINYINT - Static variable in class org.jooq.util.oracle.OracleDataType
 
__TINYINT - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__VARBINARY - Static variable in class org.jooq.util.db2.DB2DataType
 
__VARBINARY - Static variable in class org.jooq.util.derby.DerbyDataType
 
__VARBINARY - Static variable in class org.jooq.util.oracle.OracleDataType
 
__VARBINARY - Static variable in class org.jooq.util.postgres.PostgresDataType
 
__VARBINARY - Static variable in class org.jooq.util.sqlite.SQLiteDataType
 

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _

Copyright © 2012. All Rights Reserved.