|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface InsertOnDuplicateStep<R extends Record>
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();
Method Summary | |
---|---|
InsertFinalStep<R> |
onDuplicateKeyIgnore()
Add an ON DUPLICATE KEY IGNORE clause to this insert query. |
InsertOnDuplicateSetStep<R> |
onDuplicateKeyUpdate()
Add an ON DUPLICATE KEY UPDATE clause to this insert query. |
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 |
Methods inherited from interface org.jooq.InsertReturningStep |
---|
returning, returning, returning |
Method Detail |
---|
InsertOnDuplicateSetStep<R> onDuplicateKeyUpdate()
ON DUPLICATE KEY UPDATE
clause to this insert query.
This will try to INSERT
a record. If there is a primary key
or unique key in this INSERT
statement's affected table that
matches the value being inserted, then the UPDATE
clause is
executed instead.
MySQL and CUBRID natively implements this type of clause. jOOQ can
simulate this clause using a MERGE
statement on some other
databases. The conditions for a RDBMS to simulate this clause are:
INSERT
statement's table is an
UpdatableTable
MERGE
clause (see
Factory.mergeInto(Table)
).These are the dialects that fulfill the above requirements:
InsertFinalStep<R> onDuplicateKeyIgnore()
ON DUPLICATE KEY IGNORE
clause to this insert query.
This will try to INSERT
a record. If there is a primary key
or unique key in this INSERT
statement's affected table that
matches the value being inserted, then the INSERT
statement
is ignored.
This clause is not actually supported in this form by any database, but can be simulated as such:
Dialect | Simulation |
---|---|
SQLDialect.MYSQL |
|
SQLDialect.CUBRID |
|
SQLDialect.DB2 SQLDialect.HSQLDB SQLDialect.ORACLE SQLDialect.SQLSERVER SQLDialect.SYBASE |
|
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |