org.sql.generation.api.grammar.modification
Interface UpdateBySearch

All Superinterfaces:
SQLStatement, org.atp.api.Typeable<UpdateStatement>, UpdateStatement

public interface UpdateBySearch
extends UpdateStatement

This syntax element represents UPDATE statement.

Author:
Stanislav Muhametsin

Method Summary
 java.util.List<SetClause> getSetClauses()
          Returns the SET clauses for columns of the target table.
 TargetTable getTargetTable()
          Returns the target table of this UPDATE statement.
 BooleanExpression getWhere()
          Returns the search condition for the rows to be updated.
 
Methods inherited from interface org.atp.api.Typeable
getImplementedType
 

Method Detail

getTargetTable

TargetTable getTargetTable()
Returns the target table of this UPDATE statement.

Returns:
The target table of this UPDATE statement.
See Also:
TargetTable

getWhere

BooleanExpression getWhere()
Returns the search condition for the rows to be updated.

Returns:
The search condition for the rows to be updated.

getSetClauses

java.util.List<SetClause> getSetClauses()
Returns the SET clauses for columns of the target table.

Returns:
The SET clauses for columns of the target table.
See Also:
SetClause


Copyright © 2010. All Rights Reserved.