- 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 SummaryModifier and TypeMethodDescription@NotNull InsertSetStep<R> Add an additional record to theINSERTstatement@NotNull InsertSetMoreStep<R> set(Collection<? extends Record> records) Set values in theINSERTstatement.@NotNull InsertSetMoreStep<R> Set values in theINSERTstatement.<T> @NotNull InsertSetMoreStep<R> Set a value for a field in theINSERTstatement.<T> @NotNull InsertSetMoreStep<R> Set a value for a field in theINSERTstatement.<T> @NotNull InsertSetMoreStep<R> Set a value for a field in theINSERTstatement.@NotNull InsertSetMoreStep<R> Set values in theINSERTstatement.@NotNull InsertSetMoreStep<R> Set values in theINSERTstatement.<T> @NotNull InsertSetMoreStep<R> Set anullvalue for a field in theINSERTstatement.Methods inherited from interface org.jooq.Attachableattach, configuration, detachMethods inherited from interface org.jooq.AttachableQueryPartgetBindValues, getParam, getParams, getSQL, getSQLMethods inherited from interface org.jooq.InsertOnDuplicateSteponConflict, onConflict, onConflictDoNothing, onConflictOnConstraint, onConflictOnConstraint, onConflictOnConstraint, onDuplicateKeyIgnore, onDuplicateKeyUpdateMethods inherited from interface org.jooq.InsertReturningStepreturning, 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, returningResultMethods inherited from interface org.reactivestreams.PublishersubscribeMethods inherited from interface org.jooq.Querybind, bind, cancel, execute, executeAsync, executeAsync, isExecutable, keepStatement, poolable, queryTimeout
- 
Method Details- 
setSet a value for a field in theINSERTstatement.
- 
set@NotNull @CheckReturnValue @Support <T> @NotNull InsertSetMoreStep<R> set(Field<T> field, Field<T> value) Set a value for a field in theINSERTstatement.
- 
set@NotNull @CheckReturnValue @Support <T> @NotNull InsertSetMoreStep<R> set(Field<T> field, Select<? extends Record1<T>> value) Set a value for a field in theINSERTstatement.
- 
setNullSet anullvalue for a field in theINSERTstatement.This method is convenience for calling set(Field, Object), without the necessity of casting the Javanullliteral to(T).
- 
set
- 
setSet values in theINSERTstatement.This is the same as calling set(Map)with the argument record treated as aMap<Field<?>, Object>.- See Also:
 
- 
setSet values in theINSERTstatement.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 theINSERTstatement.This is convenience for multiple calls to set(Record)andnewRecord().- See Also:
 
- 
newRecordAdd an additional record to theINSERTstatement- See Also:
 
 
-