|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface InsertSetMoreStep<R extends Record>
This type is used for the Insert
's alternative DSL API.
Example:
Factory create = new Factory();
create.insertInto(table)
.set(field1, value1)
.set(field2, value2)
.newRecord()
.set(field1, value3)
.set(field2, value4)
.onDuplicateKeyUpdate()
.set(field1, value1)
.set(field2, value2)
.execute();
Method Summary | |
---|---|
InsertSetStep<R> |
newRecord()
Add an additional record to the INSERT statement |
Methods inherited from interface org.jooq.InsertSetStep |
---|
select, set, set, set, values, values, values |
Methods inherited from interface org.jooq.InsertOnDuplicateStep |
---|
onDuplicateKeyUpdate |
Methods inherited from interface org.jooq.Query |
---|
bind, bind, execute, getBindValues, getParam, getParams, getSQL, getSQL |
Methods inherited from interface org.jooq.Attachable |
---|
attach |
Methods inherited from interface org.jooq.Adapter |
---|
internalAPI |
Methods inherited from interface org.jooq.InsertReturningStep |
---|
returning, returning, returning |
Method Detail |
---|
InsertSetStep<R> newRecord()
INSERT
statement
InsertQuery.newRecord()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |