org.jooq
Interface InsertOnDuplicateSetMoreStep<R extends Record>

All Superinterfaces:
Adapter, Attachable, Insert<R>, InsertFinalStep<R>, InsertOnDuplicateSetStep<R>, Query, QueryPart, Serializable

public interface InsertOnDuplicateSetMoreStep<R extends Record>
extends InsertOnDuplicateSetStep<R>, InsertFinalStep<R>

This type is used for the Insert's DSL API.

Example:

 Factory create = new Factory();

 create.insertInto(table, field1, field2)
       .values(value1, value2)
       .values(value3, value4)
       .onDuplicateKeyUpdate()
       .set(field1, value1)
       .set(field2, value2)
       .execute();
 

Author:
Lukas Eder

Method Summary
 
Methods inherited from interface org.jooq.InsertOnDuplicateSetStep
set, set, set
 
Methods inherited from interface org.jooq.Query
bind, bind, execute, getBindValues, getParam, getParams, getSQL, getSQL, isExecutable
 
Methods inherited from interface org.jooq.QueryPart
attach
 
Methods inherited from interface org.jooq.Adapter
internalAPI
 



Copyright © 2012. All Rights Reserved.