Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DSLContext.newRecord(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11)
Create a new empty
Record . |
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DSLContext.select(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11)
Create a new DSL select statement.
|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DSLContext.selectDistinct(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11)
Create a new DSL select statement.
|
Modifier and Type | Method and Description |
---|---|
Condition |
BetweenAndStep11.and(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Create a condition to check this field against some bounds
|
BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
Row11.between(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row11.between(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row11.between(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a range of two records.
|
BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
Row11.betweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row11.betweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row11.betweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row11.compare(Comparator comparator,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record record
using a dynamic comparator.
|
Condition |
Row11.eq(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for equality.
|
Condition |
Row11.equal(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for equality.
|
Condition |
Row11.ge(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.greaterOrEqual(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.greaterThan(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.gt(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.in(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... record)
Compare this row value expression with a set of records for equality.
|
Condition |
Row11.le(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.lessOrEqual(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.lessThan(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.lt(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for order.
|
Condition |
Row11.ne(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for non-equality.
|
BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
Row11.notBetween(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row11.notBetween(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row11.notBetween(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is within a range of two records.
|
BetweenAndStep11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
Row11.notBetweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row11.notBetweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row11.notBetweenSymmetric(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> minValue,
Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> maxValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row11.notEqual(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> record)
Compare this row value expression with a record for non-equality
|
Condition |
Row11.notIn(Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... record)
Compare this row value expression with a set of records for non-equality.
|
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
UpdateQuery.addValues(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> row,
Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Condition |
Row11.eq(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row11.equal(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row11.ge(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.greaterOrEqual(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.greaterThan(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.gt(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.in(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row11.le(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.lessOrEqual(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.lessThan(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.lt(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row11.ne(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.
|
Condition |
Row11.notEqual(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.
|
Condition |
Row11.notIn(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Compare this row value expression with a subselect for non-equality.
|
Merge<R> |
MergeValuesStep11.select(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Use a
SELECT statement as the source of values for the
MERGE statement
This variant of the MERGE .. |
Insert<R> |
InsertValuesStep11.select(Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Use a
SELECT statement as the source of values for the
INSERT statement
This variant of the INSERT .. |
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
UpdateSetFirstStep.set(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> row,
Select<? extends Record11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DefaultDSLContext.newRecord(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11) |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DSL.select(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11)
Create a new DSL subselect statement.
|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DefaultDSLContext.select(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11) |
static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DSL.selectDistinct(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11)
Create a new DSL subselect statement.
|
<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DefaultDSLContext.selectDistinct(Field<T1> field1,
Field<T2> field2,
Field<T3> field3,
Field<T4> field4,
Field<T5> field5,
Field<T6> field6,
Field<T7> field7,
Field<T8> field8,
Field<T9> field9,
Field<T10> field10,
Field<T11> field11) |
static <T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11> |
DSL.values(Row11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>... rows)
Create a
VALUES() expression of degree 11 . |
Copyright © 2013. All Rights Reserved.