- 
- All Superinterfaces:
- Attachable,- AutoCloseable,- Flow.Publisher<Integer>,- Insert<R>,- InsertFinalStep<R>,- InsertOnDuplicateStep<R>,- InsertReturningStep<R>,- org.reactivestreams.Publisher<Integer>,- Query,- QueryPart,- RowCountQuery,- Serializable,- Statement
 
 public interface InsertValuesStep1<R extends Record,T1> extends InsertOnDuplicateStep<R> This type is used for theInsert's DSL API.Example: using(configuration) .insertInto(table, field1) .values(field1) .values(field1) .onDuplicateKeyUpdate() .set(field1, value1) .set(field2, value2) .execute();- Author:
- Lukas Eder
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description InsertOnDuplicateStep<R>select(Select<? extends Record1<T1>> select)Use aSELECTstatement as the source of values for theINSERTstatementInsertValuesStep1<R,T1>values(Collection<?> values)Add values to the insert statement.InsertValuesStep1<R,T1>values(Field<T1> value1)Add values to the insert statement.InsertValuesStep1<R,T1>values(T1 value1)Add values to the insert statement.- 
Methods inherited from interface org.jooq.Attachableattach, configuration, detach
 - 
Methods inherited from interface java.util.concurrent.Flow.Publishersubscribe
 - 
Methods inherited from interface org.jooq.InsertOnDuplicateSteponConflict, onConflict, onConflictDoNothing, onConflictOnConstraint, onConflictOnConstraint, onConflictOnConstraint, onDuplicateKeyIgnore, onDuplicateKeyUpdate
 - 
Methods 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, returningResult
 - 
Methods inherited from interface org.jooq.Querybind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, poolable, queryTimeout
 
- 
 
- 
- 
- 
Method Detail- 
values@Support InsertValuesStep1<R,T1> values(T1 value1) Add values to the insert statement.
 - 
values@Support InsertValuesStep1<R,T1> values(Field<T1> value1) Add values to the insert statement.
 - 
values@Support InsertValuesStep1<R,T1> values(Collection<?> values) Add values to the insert statement.
 - 
select@Support InsertOnDuplicateStep<R> select(Select<? extends Record1<T1>> select) Use aSELECTstatement as the source of values for theINSERTstatementThis variant of the INSERT .. SELECTstatement expects a select returning exactly as many fields as specified previously in theINTOclause:DSLContext.insertInto(Table, Field)
 
- 
 
-