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