| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
public interface UpdateSetStep<R extends Record>
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();
 
| Method Summary | ||
|---|---|---|
| 
 | set(Field<T> field,
    Field<T> value)Set a value for a field in the UPDATEstatement | |
| 
 | set(Field<T> field,
    T value)Set a value for a field in the UPDATEstatement | |
|  UpdateSetMoreStep<R> | set(Map<? extends Field<?>,?> map)Set a value for a field in the UPDATEstatement
 
 Please assure that key/value pairs have matching<T>types. | |
| Method Detail | 
|---|
<T> UpdateSetMoreStep<R> set(Field<T> field,
                             T value)
UPDATE statement
<T> UpdateSetMoreStep<R> set(Field<T> field,
                             Field<T> value)
UPDATE statement
UpdateSetMoreStep<R> set(Map<? extends Field<?>,?> map)
UPDATE statement
 
 Please assure that key/value pairs have matching <T>
 types. Values can either be of type <T> or
 Field<T>
| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||