| Package | Description | 
|---|---|
| com.mysema.query.sql | SQL/JDBC support for Querydsl | 
| com.mysema.query.sql.dml | DML operations support | 
| Modifier and Type | Interface and Description | 
|---|---|
| interface  | SQLCommonQueryFactory<Q extends SQLCommonQuery<?>,SQ extends AbstractSQLSubQuery<?>,D extends SQLDeleteClause,U extends SQLUpdateClause,I extends SQLInsertClause,M extends SQLMergeClause>Factory interface for query and clause creation. | 
| Modifier and Type | Method and Description | 
|---|---|
| SQLUpdateClause | AbstractSQLQueryFactory. update(RelationalPath<?> path) | 
| Modifier and Type | Method and Description | 
|---|---|
| SQLUpdateClause | SQLUpdateClause. addBatch()Add the current state of bindings as a batch item | 
| SQLUpdateClause | SQLUpdateClause. addFlag(QueryFlag.Position position,
       Expression<?> flag)Add the given Expression at the given position as a query flag | 
| SQLUpdateClause | SQLUpdateClause. addFlag(QueryFlag.Position position,
       String flag)Add the given String literal at the given position as a query flag | 
| SQLUpdateClause | SQLUpdateClause. limit(long limit) | 
| SQLUpdateClause | SQLUpdateClause. populate(Object bean)Populate the UPDATE clause with the properties of the given bean. | 
| <T> SQLUpdateClause | SQLUpdateClause. populate(T obj,
        Mapper<T> mapper)Populate the UPDATE clause with the properties of the given bean using the given Mapper. | 
| SQLUpdateClause | SQLUpdateClause. set(List<? extends Path<?>> paths,
   List<?> values) | 
| <T> SQLUpdateClause | SQLUpdateClause. set(Path<T> path,
   Expression<? extends T> expression) | 
| <T> SQLUpdateClause | SQLUpdateClause. set(Path<T> path,
   T value) | 
| <T> SQLUpdateClause | SQLUpdateClause. setNull(Path<T> path) | 
| SQLUpdateClause | SQLUpdateClause. where(Predicate... o) | 
| SQLUpdateClause | SQLUpdateClause. where(Predicate p) | 
Copyright © 2007–2015 Querydsl. All rights reserved.