Package org.jooq

Interface MergeValuesStep1<R extends Record,​T1>

  • All Known Subinterfaces:
    MergeKeyStep1<R,​T1>

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

    Example:

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