Module org.jooq
Package org.jooq

Interface MergeKeyStep1<R extends Record,​T1>

  • All Superinterfaces:
    MergeValuesStep1<R,​T1>

    public interface MergeKeyStep1<R extends Record,​T1>
    extends MergeValuesStep1<R,​T1>
    This type is used for the H2-specific variant of the Merge's DSL API.

    Example:

     DSLContext create = DSL.using(configuration);
    
     create.mergeInto(table, field1)
           .key(id)
           .values(field1)
           .execute();
     
    Author:
    Lukas Eder