Uses of Interface
org.jooq.InsertValuesStep7
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of InsertValuesStep7 in org.jooq
Modifier and TypeMethodDescription<T1, T2, T3, T4, T5, T6, T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>InsertSetStep.columns(Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Set the columns for insert.<R extends Record, T1, T2, T3, T4, T5, T6, T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>DSLContext.insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new DSL insert statement.<R extends Record, T1, T2, T3, T4, T5, T6, T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>WithStep.insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new DSL insert statement.InsertValuesStep7.values(Collection<?> values)
Add a single row of values to the insert statement.InsertValuesStep7.values(Field<T1> value1, Field<T2> value2, Field<T3> value3, Field<T4> value4, Field<T5> value5, Field<T6> value6, Field<T7> value7)
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.InsertValuesStep7.values(T1 value1, T2 value2, T3 value3, T4 value4, T5 value5, T6 value6, T7 value7)
Add a single row of values to the insert statement.InsertValuesStep7.valuesOfRecords(Collection<? extends Record7<T1,T2,T3,T4,T5,T6,T7>> values)
Add multiple rows of values to the insert statement.Add multiple rows of values to the insert statement.InsertValuesStep7.valuesOfRows(Collection<? extends Row7<T1,T2,T3,T4,T5,T6,T7>> values)
Add multiple rows of values to the insert statement.Add multiple rows of values to the insert statement. -
Uses of InsertValuesStep7 in org.jooq.impl
Modifier and TypeMethodDescription<R extends Record, T1, T2, T3, T4, T5, T6, T7>
InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>DefaultDSLContext.insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
static <R extends Record, T1, T2, T3, T4, T5, T6, T7>
@NotNull InsertValuesStep7<R,T1,T2,T3,T4,T5,T6,T7>DSL.insertInto(Table<R> into, Field<T1> field1, Field<T2> field2, Field<T3> field3, Field<T4> field4, Field<T5> field5, Field<T6> field6, Field<T7> field7)
Create a new DSL insert statement.