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 |
---|---|
Row1<T1> |
Record1.fieldsRow()
Get this record's fields as a
Row1 . |
Row1<T1> |
Record1.valuesRow()
Get this record's values as a
Row1 . |
Modifier and Type | Method and Description |
---|---|
<T1> void |
UpdateQuery.addValues(Row1<T1> row,
Row1<T1> value)
Specify a multi-column set clause for the
UPDATE statement. |
<T1> void |
UpdateQuery.addValues(Row1<T1> row,
Row1<T1> value)
Specify a multi-column set clause for the
UPDATE statement. |
<T1> void |
UpdateQuery.addValues(Row1<T1> row,
Select<? extends Record1<T1>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Condition |
BetweenAndStep1.and(Row1<T1> maxValue)
Create a condition to check this field against some bounds
|
BetweenAndStep1<T1> |
Row1.between(Row1<T1> minValue)
Check if this row value expression is within a range of two other row
value expressions.
|
Condition |
Row1.between(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is within a range of two other row
value expressions.
|
Condition |
Row1.between(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is within a range of two other row
value expressions.
|
BetweenAndStep1<T1> |
Row1.betweenSymmetric(Row1<T1> minValue)
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row1.betweenSymmetric(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row1.betweenSymmetric(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is within a symmetric range of two
other row value expressions.
|
Condition |
Row1.compare(Comparator comparator,
Row1<T1> row)
Compare this row value expression with another row value expression
using a dynamic comparator.
|
Condition |
Row1.eq(Row1<T1> row)
Compare this row value expression with another row value expression for
equality.
|
Condition |
Row1.equal(Row1<T1> row)
Compare this row value expression with another row value expression for
equality.
|
Condition |
Row1.ge(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.greaterOrEqual(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.greaterThan(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.gt(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.in(Row1<T1>... rows)
Compare this row value expression with a set of row value expressions for
equality.
|
Condition |
Row1.le(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.lessOrEqual(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.lessThan(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.lt(Row1<T1> row)
Compare this row value expression with another row value expression for
order.
|
Condition |
Row1.ne(Row1<T1> row)
Compare this row value expression with another row value expression for
non-equality.
|
BetweenAndStep1<T1> |
Row1.notBetween(Row1<T1> minValue)
Check if this row value expression is not within a range of two other
row value expressions.
|
Condition |
Row1.notBetween(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is not within a range of two other
row value expressions.
|
Condition |
Row1.notBetween(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is not within a range of two other
row value expressions.
|
BetweenAndStep1<T1> |
Row1.notBetweenSymmetric(Row1<T1> minValue)
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row1.notBetweenSymmetric(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row1.notBetweenSymmetric(Row1<T1> minValue,
Row1<T1> maxValue)
Check if this row value expression is not within a symmetric range of two
other row value expressions.
|
Condition |
Row1.notEqual(Row1<T1> row)
Compare this row value expression with another row value expression for
non-equality.
|
Condition |
Row1.notIn(Row1<T1>... rows)
Compare this row value expression with a set of row value expressions for
equality.
|
<T1> UpdateFromStep<R> |
UpdateSetFirstStep.set(Row1<T1> row,
Row1<T1> value)
Specify a multi-column set clause for the
UPDATE statement. |
<T1> UpdateFromStep<R> |
UpdateSetFirstStep.set(Row1<T1> row,
Row1<T1> value)
Specify a multi-column set clause for the
UPDATE statement. |
<T1> UpdateFromStep<R> |
UpdateSetFirstStep.set(Row1<T1> row,
Select<? extends Record1<T1>> select)
Specify a multi-column set clause for the
UPDATE statement. |
Modifier and Type | Method and Description |
---|---|
Condition |
Row1.in(Collection<? extends Row1<T1>> rows)
Compare this row value expression with a set of row value expressions for
equality.
|
Condition |
Row1.notIn(Collection<? extends Row1<T1>> rows)
Compare this row value expression with a set of row value expressions for
equality.
|
Modifier and Type | Method and Description |
---|---|
static <T1> Row1<T1> |
DSL.row(Field<T1> t1)
Create a row value expression of degree
1 . |
static <T1> Row1<T1> |
DSL.row(T1 t1)
Create a row value expression of degree
1 . |
Modifier and Type | Method and Description |
---|---|
static <T1> Table<Record1<T1>> |
DSL.values(Row1<T1>... rows)
Create a
VALUES() expression of degree 1 . |
Copyright © 2014. All Rights Reserved.