Uses of Interface
org.jooq.Record5
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Record5 in org.jooq
Modifier and TypeMethodDescription<R extends Record5<?,
?, ?, ?, ?>>
@NotNull CommonTableExpression<R>DerivedColumnList5.as
(ResultQuery<R> query) Specify a subselect to refer to by theDerivedColumnList
to form a common table expression.<R extends Record5<?,
?, ?, ?, ?>>
@NotNull CommonTableExpression<R>DerivedColumnList5.asMaterialized
(ResultQuery<R> query) Specify a materialized subselect to refer to by theDerivedColumnList
to form a common table expression.<R extends Record5<?,
?, ?, ?, ?>>
@NotNull CommonTableExpression<R>DerivedColumnList5.asNotMaterialized
(ResultQuery<R> query) Specify a non-materialized subselect to refer to by theDerivedColumnList
to form a common table expression.static final <T1,
T2, T3, T4, T5, R extends Record5<T1, T2, T3, T4, T5>, U>
RecordMapper<R,U> Records.mapping
(Function5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends U> function) Create aRecordMapper
that can map fromRecord5
to a user type in a type safe way.Modifier and TypeMethodDescription<T1,
T2, T3, T4, T5>
@NotNull Record5<T1,T2, T3, T4, T5> DSLContext.fetchSingle
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Execute and return exactly one record for<T1,
T2, T3, T4, T5>
@NotNull Record5<T1,T2, T3, T4, T5> Record.into
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Copy this record into a new record holding only a subset of the previous fields, usingFields.field(Field)
for lookup.<T1,
T2, T3, T4, T5>
@NotNull Record5<T1,T2, T3, T4, T5> DSLContext.newRecord
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Create a new emptyRecord
.Set the first value.Set the second value.Set the third value.Set the fourth value.Set the fifth value.Set all values.Set a value into this record, usingFields.field(Field)
for lookup.Set a value into this record, usingFields.field(Field)
for lookup.Modifier and TypeMethodDescription<T1,
T2, T3, T4, T5>
@NotNull CloseableResultQuery<Record5<T1,T2, T3, T4, T5>> CloseableResultQuery.coerce
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) <T1,
T2, T3, T4, T5>
@NotNull ResultQuery<Record5<T1,T2, T3, T4, T5>> ResultQuery.coerce
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Coerce the result record type of this query to that of a set of fields.Result.into
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Copy all records from this result into a new result with new records holding only a subset of the previous fields, usingFields.field(Field)
for lookup.DSLContext.newResult
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Create a new emptyResult
.<T1,
T2, T3, T4, T5>
@NotNull DeleteResultStep<Record5<T1,T2, T3, T4, T5>> DeleteReturningStep.returningResult
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Configure theDELETE
statement to return a list of fields inR
.<T1,
T2, T3, T4, T5>
@NotNull InsertResultStep<Record5<T1,T2, T3, T4, T5>> InsertReturningStep.returningResult
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Configure theINSERT
statement to return a list of fields inR
.<T1,
T2, T3, T4, T5>
@NotNull UpdateResultStep<Record5<T1,T2, T3, T4, T5>> UpdateReturningStep.returningResult
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Configure theUPDATE
statement to return a list of fields inR
.<T1,
T2, T3, T4, T5>
@NotNull SelectSelectStep<Record5<T1,T2, T3, T4, T5>> DSLContext.select
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Create a new DSL select statement.<T1,
T2, T3, T4, T5>
@NotNull SelectSelectStep<Record5<T1,T2, T3, T4, T5>> WithStep.select
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Create a new DSL select statement.<T1,
T2, T3, T4, T5>
@NotNull SelectSelectStep<Record5<T1,T2, T3, T4, T5>> DSLContext.selectDistinct
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Create a new DSL select statement.<T1,
T2, T3, T4, T5>
@NotNull SelectSelectStep<Record5<T1,T2, T3, T4, T5>> WithStep.selectDistinct
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Create a new DSL select statement.Modifier and TypeMethodDescription@NotNull Condition
Create a condition to check this field against some boundsCheck if this row value expression is within a range of two records.@NotNull Condition
Check if this row value expression is within a range of two records.Check if this row value expression is within a symmetric range of two records.@NotNull Condition
Check if this row value expression is within a symmetric range of two records.@NotNull Condition
Compare this row value expression with a record using a dynamic comparator.@NotNull Condition
Compare this row value expression with a record for equality.@NotNull Condition
Compare this row value expression with a record for equality.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a set of records for equality.@NotNull Condition
Compare this row value expression with another row value expression for distinctness.@NotNull Condition
Compare this row value expression with another row value expression for distinctness.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for order.@NotNull Condition
Compare this row value expression with a record for non-equality.Check if this row value expression is within a range of two records.@NotNull Condition
Check if this row value expression is within a range of two records.Check if this row value expression is not within a symmetric range of two records.@NotNull Condition
Check if this row value expression is not within a symmetric range of two records.@NotNull Condition
Compare this row value expression with a record for non-equality@NotNull Condition
Compare this row value expression with a set of records for non-equality.@NotNull Statement
Assign a value to this set of variables.Add a single row of values to the insert statement.Add multiple rows of values to the insert statement.Modifier and TypeMethodDescription<T1,
T2, T3, T4, T5>
voidSpecify a multi-column set clause for theUPDATE
statement.@NotNull WithStep
WithAsStep5.as
(ResultQuery<? extends Record5<?, ?, ?, ?, ?>> query) Associate a subselect with a common table expression's table and column names.@NotNull WithStep
WithAsStep5.asMaterialized
(ResultQuery<? extends Record5<?, ?, ?, ?, ?>> query) Associate a materialized subselect with a common table expression's table and column names.@NotNull WithStep
WithAsStep5.asNotMaterialized
(ResultQuery<? extends Record5<?, ?, ?, ?, ?>> query) Associate a non-materialized subselect with a common table expression's table and column names.@NotNull Condition
Row5.compare
(Comparator comparator, QuantifiedSelect<? extends Record5<T1, T2, T3, T4, T5>> select) Compare this row value expression with a subselect using a dynamic comparator.@NotNull Condition
Compare this row value expression with a subselect using a dynamic comparator.@NotNull Condition
Compare this row value expression with a subselect for equality.@NotNull Condition
Compare this row value expression with a subselect for equality.@NotNull Condition
Compare this row value expression with a subselect for equality.@NotNull Condition
Compare this row value expression with a subselect for equality.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Row5.greaterOrEqual
(QuantifiedSelect<? extends Record5<T1, T2, T3, T4, T5>> select) Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Row5.greaterThan
(QuantifiedSelect<? extends Record5<T1, T2, T3, T4, T5>> select) Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a set of records for equality.@NotNull Condition
Compare this row value expression with a subselect for equality.@NotNull Condition
Compare this row value expression with another row value expression for distinctness.@NotNull Condition
Compare this row value expression with another row value expression for distinctness.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Row5.lessOrEqual
(QuantifiedSelect<? extends Record5<T1, T2, T3, T4, T5>> select) Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for order.@NotNull Condition
Compare this row value expression with a subselect for non-equality.@NotNull Condition
Compare this row value expression with a subselect for non-equality.@NotNull Condition
Compare this row value expression with a subselect for non-equality.@NotNull Condition
Compare this row value expression with a subselect for non-equality.@NotNull Condition
Compare this row value expression with a set of records for equality.@NotNull Condition
Compare this row value expression with a subselect for non-equality.@NotNull InsertOnDuplicateStep<R>
Use aSELECT
statement as the source of values for theINSERT
statementDeprecated, for removal: This API element is subject to removal in a future version.@NotNull Statement
Assign a value to this set of variables.<T1,
T2, T3, T4, T5>
@NotNull UpdateFromStep<R>Specify a multi-column set clause for theUPDATE
statement.InsertValuesStep5.valuesOfRecords
(Collection<? extends Record5<T1, T2, T3, T4, T5>> values) Add multiple rows of values to the insert statement. -
Uses of Record5 in org.jooq.impl
Modifier and TypeMethodDescription<T1,
T2, T3, T4, T5>
Record5<T1,T2, T3, T4, T5> DefaultDSLContext.fetchSingle
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) <T1,
T2, T3, T4, T5>
Record5<T1,T2, T3, T4, T5> DefaultDSLContext.newRecord
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Modifier and TypeMethodDescriptionstatic <T1,
T2, T3, T4, T5>
@NotNull ArrayAggOrderByStep<Result<Record5<T1,T2, T3, T4, T5>>> DSL.multisetAgg
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Get theMULTISET_AGG
aggregate function to nest group contents.static <T1,
T2, T3, T4, T5>
@NotNull ArrayAggOrderByStep<Result<Record5<T1,T2, T3, T4, T5>>> DSL.multisetAggDistinct
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Get theMULTISET_AGG(DISTINCT)
aggregate function to nest group contents.DefaultDSLContext.newResult
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) static <T1,
T2, T3, T4, T5>
@NotNull RecordType<Record5<T1,T2, T3, T4, T5>> DSL.recordType
(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5) Create aRecordType
of degree5
.Deprecated, for removal: This API element is subject to removal in a future version.- [#11812] - 3.15.0 - UseRow5
as aSelectField
directly, instead.<T1,
T2, T3, T4, T5>
SelectSelectStep<Record5<T1,T2, T3, T4, T5>> DefaultDSLContext.select
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) static <T1,
T2, T3, T4, T5>
@NotNull SelectSelectStep<Record5<T1,T2, T3, T4, T5>> DSL.select
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Create a new DSL subselect statement.<T1,
T2, T3, T4, T5>
SelectSelectStep<Record5<T1,T2, T3, T4, T5>> DefaultDSLContext.selectDistinct
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) static <T1,
T2, T3, T4, T5>
@NotNull SelectSelectStep<Record5<T1,T2, T3, T4, T5>> DSL.selectDistinct
(SelectField<T1> field1, SelectField<T2> field2, SelectField<T3> field3, SelectField<T4> field4, SelectField<T5> field5) Create a new DSL subselect statement.Create aVALUES()
expression of degree5
.
DSLContext.mergeInto(Table)