public interface UpdateBySearchBuilder extends AbstractBuilder<UpdateBySearch>
UPDATE table SET set-clauses
[WHERE searchCondition ]).SetClause,
BooleanBuilder| Modifier and Type | Method and Description |
|---|---|
UpdateBySearchBuilder |
addSetClauses(SetClause... clauses)
Adds the clause to the set-clause list of this
UPDATE statement. |
List<SetClause> |
getSetClauses()
Returns the list of set clauses which has been added to this builder.
|
BooleanBuilder |
getWhereBuilder()
Returns the builder for search condition for this
UPDATE statement (boolean expression after
WHERE). |
UpdateBySearchBuilder |
setTargetTable(TargetTable table)
Sets the target table for this
UPDATE statement. |
createExpressionUpdateBySearchBuilder setTargetTable(TargetTable table)
UPDATE statement.table - The target table for this UPDATE statement.BooleanBuilder getWhereBuilder()
UPDATE statement (boolean expression after
WHERE). The search condition is optional.UPDATE statement.UpdateBySearchBuilder addSetClauses(SetClause... clauses)
UPDATE statement.clauses - The set-clauses for this UPDATE statement.Copyright © 2010-2012. All Rights Reserved.