- All Superinterfaces:
Attachable
,AttachableQueryPart
,DMLQuery<R>
,Flow.Publisher<Integer>
,Insert<R>
,InsertFinalStep<R>
,InsertOnDuplicateStep<R>
,InsertReturningStep<R>
,Publisher<Integer>
,org.reactivestreams.Publisher<Integer>
,Query
,QueryPart
,RowCountQuery
,Serializable
,Statement
Insert
's alternative DSL API.
Example:
DSLContext create = DSL.using(configuration);
create.insertInto(table)
.set(field1, value1)
.set(field2, value2)
.newRecord()
.set(field1, value3)
.set(field2, value4)
.onDuplicateKeyUpdate()
.set(field1, value1)
.set(field2, value2)
.execute();
Referencing XYZ*Step
types directly from client code
It is usually not recommended to reference any XYZ*Step
types
directly from client code, or assign them to local variables. When writing
dynamic SQL, creating a statement's components dynamically, and passing them
to the DSL API statically is usually a better choice. See the manual's
section about dynamic SQL for details: https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql.
Drawbacks of referencing the XYZ*Step
types directly:
- They're operating on mutable implementations (as of jOOQ 3.x)
- They're less composable and not easy to get right when dynamic SQL gets complex
- They're less readable
- They might have binary incompatible changes between minor releases
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@NotNull InsertSetStep<R>
Add an additional record to theINSERT
statement@NotNull InsertSetMoreStep<R>
set
(Collection<? extends Record> records) Set values in theINSERT
statement.@NotNull InsertSetMoreStep<R>
Set values in theINSERT
statement.<T> @NotNull InsertSetMoreStep<R>
Set a value for a field in theINSERT
statement.<T> @NotNull InsertSetMoreStep<R>
Set a value for a field in theINSERT
statement.<T> @NotNull InsertSetMoreStep<R>
Set a value for a field in theINSERT
statement.@NotNull InsertSetMoreStep<R>
Set values in theINSERT
statement.@NotNull InsertSetMoreStep<R>
Set values in theINSERT
statement.<T> @NotNull InsertSetMoreStep<R>
Set anull
value for a field in theINSERT
statement.Methods inherited from interface org.jooq.Attachable
attach, configuration, detach
Methods inherited from interface org.jooq.AttachableQueryPart
getBindValues, getParam, getParams, getSQL, getSQL
Methods inherited from interface org.jooq.InsertOnDuplicateStep
onConflict, onConflict, onConflictDoNothing, onConflictOnConstraint, onConflictOnConstraint, onConflictOnConstraint, onDuplicateKeyIgnore, onDuplicateKeyUpdate
Methods inherited from interface org.jooq.InsertReturningStep
returning, returning, returning, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult, returningResult
Methods inherited from interface org.reactivestreams.Publisher
subscribe
Methods inherited from interface org.jooq.Query
bind, bind, cancel, execute, executeAsync, executeAsync, isExecutable, keepStatement, poolable, queryTimeout
-
Method Details
-
set
Set a value for a field in theINSERT
statement. -
set
@NotNull @CheckReturnValue @Support <T> @NotNull InsertSetMoreStep<R> set(Field<T> field, Field<T> value) Set a value for a field in theINSERT
statement. -
set
@NotNull @CheckReturnValue @Support <T> @NotNull InsertSetMoreStep<R> set(Field<T> field, Select<? extends Record1<T>> value) Set a value for a field in theINSERT
statement. -
setNull
Set anull
value for a field in theINSERT
statement.This method is convenience for calling
set(Field, Object)
, without the necessity of casting the Javanull
literal to(T)
. -
set
-
set
Set values in theINSERT
statement.This is the same as calling
set(Map)
with the argument record treated as aMap<Field<?>, Object>
.- See Also:
-
set
Set values in theINSERT
statement.This is convenience for multiple calls to
set(Record)
andnewRecord()
.- See Also:
-
set
@NotNull @CheckReturnValue @Support @NotNull InsertSetMoreStep<R> set(Collection<? extends Record> records) Set values in theINSERT
statement.This is convenience for multiple calls to
set(Record)
andnewRecord()
.- See Also:
-
newRecord
Add an additional record to theINSERT
statement- See Also:
-