Uses of Interface
org.jooq.InsertValuesStep1
-
Packages that use InsertValuesStep1 Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of InsertValuesStep1 in org.jooq
Methods in org.jooq that return InsertValuesStep1 Modifier and Type Method Description <T1> InsertValuesStep1<R,T1>
InsertSetStep. columns(Field<T1> field1)
Set the columns for insert.<R extends Record,T1>
InsertValuesStep1<R,T1>DSLContext. insertInto(Table<R> into, Field<T1> field1)
Create a new DSL insert statement.<R extends Record,T1>
InsertValuesStep1<R,T1>WithStep. insertInto(Table<R> into, Field<T1> field1)
Create a new DSL insert statement.InsertValuesStep1<R,T1>
InsertValuesStep1. values(Collection<?> values)
Add values to the insert statement.InsertValuesStep1<R,T1>
InsertValuesStep1. values(Field<T1> value1)
Add values to the insert statement.InsertValuesStep1<R,T1>
InsertValuesStep1. values(T1 value1)
Add values to the insert statement. -
Uses of InsertValuesStep1 in org.jooq.impl
Methods in org.jooq.impl that return InsertValuesStep1 Modifier and Type Method Description <R extends Record,T1>
InsertValuesStep1<R,T1>DefaultDSLContext. insertInto(Table<R> into, Field<T1> field1)
static <R extends Record,T1>
InsertValuesStep1<R,T1>DSL. insertInto(Table<R> into, Field<T1> field1)
Create a new DSL insert statement.
-