Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
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> |
DSLContext.mergeInto(Table<R> table,
Collection<? extends Field<?>> fields)
Create a new DSL merge statement (H2-specific syntax).
|
<R extends Record> |
DSLContext.mergeInto(Table<R> table,
Field<?>... fields)
Create a new DSL merge statement (H2-specific syntax).
|
Modifier and Type | Method and Description |
---|---|
static <R extends Record> |
DSL.mergeInto(Table<R> table,
Collection<? extends Field<?>> fields)
Create a new DSL merge statement (H2-specific syntax).
|
<R extends Record> |
DefaultDSLContext.mergeInto(Table<R> table,
Collection<? extends Field<?>> fields) |
static <R extends Record> |
DSL.mergeInto(Table<R> table,
Field<?>... fields)
Create a new DSL merge statement (H2-specific syntax).
|
<R extends Record> |
DefaultDSLContext.mergeInto(Table<R> table,
Field<?>... fields) |
Copyright © 2014. All Rights Reserved.