Module org.jooq
Package org.jooq

Interface MergeValuesStep7<R extends Record,​T1,​T2,​T3,​T4,​T5,​T6,​T7>

  • All Known Subinterfaces:
    MergeKeyStep7<R,​T1,​T2,​T3,​T4,​T5,​T6,​T7>

    public interface MergeValuesStep7<R extends Record,​T1,​T2,​T3,​T4,​T5,​T6,​T7>
    This type is used for the H2-specific variant of the Merge's DSL API.

    Example:

     using(configuration)
           .mergeInto(table, field1, field2, field3, .., field6, field7)
           .key(id)
           .values(value1, value2, value3, .., value6, value7)
           .execute();
     
    Author:
    Lukas Eder