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> |
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)
Create a new empty
Record . |
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value1(T1 value)
Set the first value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value2(T2 value)
Set the second value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value3(T3 value)
Set the third value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value4(T4 value)
Set the fourth value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value5(T5 value)
Set the fifth value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value6(T6 value)
Set the sixth value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value7(T7 value)
Set the seventh value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value8(T8 value)
Set the eighth value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.value9(T9 value)
Set the ninth value.
|
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Record9.values(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5,
T6 t6,
T7 t7,
T8 t8,
T9 t9)
Set all values.
|
Modifier and Type | Method and Description |
---|---|
<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
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)
Create a new DSL select statement.
|
<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
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)
Create a new DSL select statement.
|
Modifier and Type | Method and Description |
---|---|
Condition |
BetweenAndStep9.and(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Create a condition to check this field against some bounds
|
BetweenAndStep9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Row9.between(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row9.between(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row9.between(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is within a range of two records.
|
BetweenAndStep9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Row9.betweenSymmetric(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row9.betweenSymmetric(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row9.betweenSymmetric(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is within a symmetric range of two
records.
|
Condition |
Row9.compare(Comparator comparator,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record record
using a dynamic comparator.
|
Condition |
Row9.eq(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for equality.
|
Condition |
Row9.equal(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for equality.
|
Condition |
Row9.ge(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.greaterOrEqual(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.greaterThan(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.gt(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.in(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>... record)
Compare this row value expression with a set of records for equality.
|
Condition |
Row9.le(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.lessOrEqual(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.lessThan(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.lt(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for order.
|
Condition |
Row9.ne(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for non-equality.
|
BetweenAndStep9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Row9.notBetween(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row9.notBetween(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is within a range of two records.
|
Condition |
Row9.notBetween(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is within a range of two records.
|
BetweenAndStep9<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
Row9.notBetweenSymmetric(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row9.notBetweenSymmetric(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row9.notBetweenSymmetric(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> minValue,
Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> maxValue)
Check if this row value expression is not within a symmetric range of two
records.
|
Condition |
Row9.notEqual(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9> record)
Compare this row value expression with a record for non-equality
|
Condition |
Row9.notIn(Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>... 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> |
UpdateQuery.addValues(Row9<T1,T2,T3,T4,T5,T6,T7,T8,T9> row,
Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Condition |
Row9.eq(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row9.equal(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row9.ge(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.greaterOrEqual(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.greaterThan(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.gt(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.in(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for equality.
|
Condition |
Row9.le(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.lessOrEqual(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.lessThan(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.lt(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for order.
|
Condition |
Row9.ne(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for non-equality.
|
Condition |
Row9.notEqual(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for non-equality.
|
Condition |
Row9.notIn(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Compare this row value expression with a subselect for non-equality.
|
Merge<R> |
MergeValuesStep9.select(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> select)
Use a
SELECT statement as the source of values for the
MERGE statement
This variant of the MERGE .. |
Insert<R> |
InsertValuesStep9.select(Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> 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> |
UpdateSetFirstStep.set(Row9<T1,T2,T3,T4,T5,T6,T7,T8,T9> row,
Select<? extends Record9<T1,T2,T3,T4,T5,T6,T7,T8,T9>> 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> |
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) |
Modifier and Type | Method and Description |
---|---|
static <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
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)
Create a new DSL subselect statement.
|
<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
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) |
static <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
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)
Create a new DSL subselect statement.
|
<T1,T2,T3,T4,T5,T6,T7,T8,T9> |
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) |
static <T1,T2,T3,T4,T5,T6,T7,T8,T9> |
DSL.values(Row9<T1,T2,T3,T4,T5,T6,T7,T8,T9>... rows)
Create a
VALUES() expression of degree 9 . |
Copyright © 2014. All Rights Reserved.