-
- All Known Subinterfaces:
MergeKeyStepN<R>
,MergeUsingStep<R>
public interface MergeValuesStepN<R extends Record>
This type is used for the H2-specific variant of theMerge
's DSL API.Example:
DSLContext create = DSL.using(configuration); create.mergeInto(table, field1, field2) .key(id) .values(value1, value2) .execute();
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Merge<R>
select(Select<?> select)
Use aSELECT
statement as the source of values for theMERGE
statementMerge<R>
values(Object... values)
Specify aVALUES
clauseMerge<R>
values(Collection<?> values)
Specify aVALUES
clauseMerge<R>
values(Field<?>... values)
Specify aVALUES
clause
-
-
-
Method Detail
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Object... values)
Specify aVALUES
clause
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Field<?>... values)
Specify aVALUES
clause
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Collection<?> values)
Specify aVALUES
clause
-
select
@Support({CUBRID,DB2,FIREBIRD_3_0,H2,HSQLDB,ORACLE,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> select(Select<?> select)
Use aSELECT
statement as the source of values for theMERGE
statementThis variant of the
MERGE .. SELECT
statement expects a select returning exactly as many fields as specified previously in theINTO
clause:DSLContext.mergeInto(Table, Field...)
orDSLContext.mergeInto(Table, Collection)
-
-