public interface InsertSetMoreStep<R extends Record> extends InsertSetStep<R>, InsertOnDuplicateStep<R>
Insert's alternative DSL API.
 
 Example: 
 DSLContext create = DSL.using(configuration);
 create.insertInto(table)
       .set(field1, value1)
       .set(field2, value2)
       .newRecord()
       .set(field1, value3)
       .set(field2, value4)
       .onDuplicateKeyUpdate()
       .set(field1, value1)
       .set(field2, value2)
       .execute();
 
| Modifier and Type | Method and Description | 
|---|---|
| InsertSetStep<R> | newRecord()Add an additional record to the  INSERTstatement | 
defaultValues, select, set, set, set, set, set, values, values, valuesonDuplicateKeyIgnore, onDuplicateKeyUpdatereturning, returning, returningbind, bind, cancel, close, execute, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, queryTimeoutattach, detach@Support InsertSetStep<R> newRecord()
INSERT statementInsertQuery.newRecord()Copyright © 2014. All Rights Reserved.