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