| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| Modifier and Type | Method and Description |
|---|---|
<R extends Record> |
FactoryOperations.insertInto(Table<R> into,
Collection<? extends Field<?>> fields)
Create a new DSL insert statement.
|
<R extends Record> |
FactoryOperations.insertInto(Table<R> into,
Field<?>... fields)
Create a new DSL insert statement.
|
InsertValuesStep<R> |
InsertValuesStep.values(Collection<?> values)
Add values to the insert statement
|
InsertValuesStep<R> |
InsertSetStep.values(Collection<?> values)
Add values to the insert statement with implicit field names
|
InsertValuesStep<R> |
InsertValuesStep.values(Field<?>... values)
Add values to the insert statement
|
InsertValuesStep<R> |
InsertSetStep.values(Field<?>... values)
Add values to the insert statement with implicit field names
|
InsertValuesStep<R> |
InsertValuesStep.values(Object... values)
Add values to the insert statement
|
InsertValuesStep<R> |
InsertSetStep.values(Object... values)
Add values to the insert statement with implicit field names
|
| Modifier and Type | Method and Description |
|---|---|
<R extends Record> |
FactoryProxy.insertInto(Table<R> into,
Collection<? extends Field<?>> fields)
Deprecated.
|
<R extends Record> |
Factory.insertInto(Table<R> into,
Collection<? extends Field<?>> fields)
Create a new DSL insert statement.
|
<R extends Record> |
FactoryProxy.insertInto(Table<R> into,
Field<?>... fields)
Deprecated.
|
<R extends Record> |
Factory.insertInto(Table<R> into,
Field<?>... fields)
Create a new DSL insert statement.
|
Copyright © 2013. All Rights Reserved.