Package org.jooq

Interface InsertValuesStep22<R extends Record,​T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22>

  • All Superinterfaces:
    Attachable, java.lang.AutoCloseable, java.util.concurrent.Flow.Publisher<java.lang.Integer>, Insert<R>, InsertFinalStep<R>, InsertOnDuplicateStep<R>, InsertReturningStep<R>, org.reactivestreams.Publisher<java.lang.Integer>, Query, QueryPart, RowCountQuery, java.io.Serializable, Statement

    public interface InsertValuesStep22<R extends Record,​T1,​T2,​T3,​T4,​T5,​T6,​T7,​T8,​T9,​T10,​T11,​T12,​T13,​T14,​T15,​T16,​T17,​T18,​T19,​T20,​T21,​T22>
    extends InsertOnDuplicateStep<R>
    This type is used for the Insert's DSL API.

    Example:

     using(configuration)
           .insertInto(table, field1, field2, field3, .., field21, field22)
           .values(valueA1, valueA2, valueA3, .., valueA21, valueA22)
           .values(valueB1, valueB2, valueB3, .., valueB21, valueB22)
           .onDuplicateKeyUpdate()
           .set(field1, value1)
           .set(field2, value2)
           .execute();
     
    Author:
    Lukas Eder