org.jooq
Interface UpdateSetMoreStep<R extends Record>

All Superinterfaces:
Adapter, Attachable, Query, QueryPart, Serializable, Update<R>, UpdateFinalStep<R>, UpdateSetStep<R>, UpdateWhereStep<R>

public interface UpdateSetMoreStep<R extends Record>
extends UpdateSetStep<R>, UpdateWhereStep<R>

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

Example:

 Factory create = new Factory();

 create.update(table)
       .set(field1, value1)
       .set(field2, value2)
       .where(field1.greaterThan(100))
       .execute();
 

Author:
Lukas Eder

Method Summary
 
Methods inherited from interface org.jooq.UpdateSetStep
set, set, set
 
Methods inherited from interface org.jooq.UpdateWhereStep
where, where, where, where, where, whereExists, whereNotExists
 
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.