Uses of Interface
org.jooq.InsertValuesStep4
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of InsertValuesStep4 in org.jooq
Modifier and TypeMethodDescription<T1,
T2, T3, T4>
@NotNull InsertValuesStep4<R,T1, T2, T3, T4> Set the columns for insert.<R extends Record,
T1, T2, T3, T4>
@NotNull InsertValuesStep4<R,T1, T2, T3, T4> DSLContext.insertInto
(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4) Create a new DSL insert statement.<R extends Record,
T1, T2, T3, T4>
@NotNull InsertValuesStep4<R,T1, T2, T3, T4> WithStep.insertInto
(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4) Create a new DSL insert statement.InsertValuesStep4.values
(Collection<?> values) Add a single row of values to the insert statement.Add a single row of values to the insert statement.Add a single row of values to the insert statement.Add a single row of values to the insert statement.Add a single row of values to the insert statement.InsertValuesStep4.valuesOfRecords
(Collection<? extends Record4<T1, T2, T3, T4>> values) Add multiple rows of values to the insert statement.Add multiple rows of values to the insert statement.InsertValuesStep4.valuesOfRows
(Collection<? extends Row4<T1, T2, T3, T4>> values) Add multiple rows of values to the insert statement.Add multiple rows of values to the insert statement. -
Uses of InsertValuesStep4 in org.jooq.impl
Modifier and TypeMethodDescription<R extends Record,
T1, T2, T3, T4>
InsertValuesStep4<R,T1, T2, T3, T4> DefaultDSLContext.insertInto
(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4) static <R extends Record,
T1, T2, T3, T4>
@NotNull InsertValuesStep4<R,T1, T2, T3, T4> DSL.insertInto
(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4) Create a new DSL insert statement.