public interface Update<R extends Record> extends RowCountQuery
UPDATE
statement.
Example:
// Assuming import static org.jooq.impl.DSL.*;
using(configuration)
.update(CUSTOMER)
.set(CUSTOMER.STATUS, "Gold")
.where(CUSTOMER.ID.eq(1))
.execute();
Instances can be created using DSL.update(Table)
, or
DSLContext.updateQuery(Table)
and overloads.
bind, bind, cancel, close, execute, executeAsync, executeAsync, getBindValues, getParam, getParams, getSQL, getSQL, getSQL, isExecutable, keepStatement, poolable, queryTimeout
attach, configuration, detach
Copyright © 2020. All rights reserved.