org.jooq
Interface UpdateFinalStep<R extends Record>

All Superinterfaces:
Adapter, Attachable, Query, QueryPart, Serializable, Update<R>
All Known Subinterfaces:
UpdateConditionStep<R>, UpdateSetMoreStep<R>, UpdateWhereStep<R>

public interface UpdateFinalStep<R extends Record>
extends Update<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.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
 



Copyright © 2012. All Rights Reserved.