-
- All Known Subinterfaces:
MergeKeyStep1<R,T1>
public interface MergeValuesStep1<R extends Record,T1>This type is used for the H2-specific variant of theMerge's DSL API.Example:
using(configuration) .mergeInto(table, field1) .key(id) .values(field1) .execute();- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Merge<R>select(Select<? extends Record1<T1>> select)Use aSELECTstatement as the source of values for theMERGEstatementMerge<R>values(Collection<?> values)Specify aVALUESclauseMerge<R>values(Field<T1> value1)Specify aVALUESclauseMerge<R>values(T1 value1)Specify aVALUESclause
-
-
-
Method Detail
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(T1 value1)
Specify aVALUESclause
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Field<T1> value1)
Specify aVALUESclause
-
values
@Support({AURORA_MYSQL,AURORA_POSTGRES,CUBRID,DB2,DERBY,FIREBIRD_3_0,H2,HANA,HSQLDB,MARIADB,MEMSQL,MYSQL,ORACLE,POSTGRES_9_5,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> values(Collection<?> values)
Specify aVALUESclause
-
select
@Support({CUBRID,DB2,FIREBIRD_3_0,H2,HANA,HSQLDB,ORACLE,SQLSERVER,SYBASE,TERADATA,VERTICA}) Merge<R> select(Select<? extends Record1<T1>> select)
Use aSELECTstatement as the source of values for theMERGEstatementThis variant of the
MERGE .. SELECTstatement expects a select returning exactly as many fields as specified previously in theINTOclause:DSLContext.mergeInto(Table, Field)
-
-