| 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 | Interface and Description |
|---|---|
interface |
MergeUsingStep<R extends Record>
This type is used for the
Merge's DSL API. |
| Modifier and Type | Method and Description |
|---|---|
<R extends Record> |
FactoryOperations.mergeInto(Table<R> table,
Collection<? extends Field<?>> fields)
Create a new DSL merge statement (H2-specific syntax)
|
<R extends Record> |
FactoryOperations.mergeInto(Table<R> table,
Field<?>... fields)
Create a new DSL merge statement (H2-specific syntax)
This statement is available from DSL syntax only.
|
| Modifier and Type | Method and Description |
|---|---|
<R extends Record> |
FactoryProxy.mergeInto(Table<R> table,
Collection<? extends Field<?>> fields)
Deprecated.
|
<R extends Record> |
Factory.mergeInto(Table<R> table,
Collection<? extends Field<?>> fields)
Create a new DSL merge statement (H2-specific syntax)
|
<R extends Record> |
FactoryProxy.mergeInto(Table<R> table,
Field<?>... fields)
Deprecated.
|
<R extends Record> |
Factory.mergeInto(Table<R> table,
Field<?>... fields)
Create a new DSL merge statement (H2-specific syntax)
This statement is available from DSL syntax only.
|
Copyright © 2013. All Rights Reserved.