public class SQLDeleteClause extends AbstractSQLClause<SQLDeleteClause> implements DeleteClause<SQLDeleteClause>
configuration, context, listeners, useLiterals| Constructor and Description | 
|---|
| SQLDeleteClause(Connection connection,
               Configuration configuration,
               RelationalPath<?> entity) | 
| SQLDeleteClause(Connection connection,
               SQLTemplates templates,
               RelationalPath<?> entity) | 
| Modifier and Type | Method and Description | 
|---|---|
| SQLDeleteClause | addBatch()Add current state of bindings as a batch item | 
| SQLDeleteClause | addFlag(QueryFlag.Position position,
       Expression<?> flag)Add the given Expression at the given position as a query flag | 
| SQLDeleteClause | addFlag(QueryFlag.Position position,
       String flag)Add the given String literal at the given position as a query flag | 
| long | execute()Execute the clause and return the amount of affected rows | 
| List<SQLBindings> | getSQL()Get the SQL string and bindings | 
| SQLDeleteClause | limit(long limit) | 
| String | toString() | 
| SQLDeleteClause | where(Predicate... o)Adds the given filter conditions | 
| SQLDeleteClause | where(Predicate p) | 
addListener, cleanupMDC, close, close, close, createBindings, createSerializer, endContext, executeBatch, logQuery, onException, reset, setParameters, setUseLiterals, startContextpublic SQLDeleteClause(Connection connection, SQLTemplates templates, RelationalPath<?> entity)
public SQLDeleteClause(Connection connection, Configuration configuration, RelationalPath<?> entity)
public SQLDeleteClause addFlag(QueryFlag.Position position, String flag)
position - flag - public SQLDeleteClause addFlag(QueryFlag.Position position, Expression<?> flag)
position - flag - public SQLDeleteClause addBatch()
public long execute()
DMLClauseexecute in interface DMLClause<SQLDeleteClause>public List<SQLBindings> getSQL()
AbstractSQLClausegetSQL in class AbstractSQLClause<SQLDeleteClause>public SQLDeleteClause where(Predicate p)
public SQLDeleteClause where(Predicate... o)
FilteredClauseSkips null arguments
where in interface FilteredClause<SQLDeleteClause>o - filter conditions to be addedpublic SQLDeleteClause limit(@Nonnegative long limit)
Copyright © 2007–2015 Querydsl. All rights reserved.