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