Uses of Class
com.mysema.query.sql.dml.SQLInsertClause

Packages that use SQLInsertClause
com.mysema.query.sql SQL/JDBC support for Querydsl 
com.mysema.query.sql.dml DML operations support 
com.mysema.query.sql.mysql MySQL support 
 

Uses of SQLInsertClause in com.mysema.query.sql
 

Classes in com.mysema.query.sql with type parameters of type SQLInsertClause
 interface SQLQueryFactory<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
 

Methods in com.mysema.query.sql that return SQLInsertClause
 SQLInsertClause AbstractSQLQueryFactory.insert(RelationalPath<?> path)
           
 

Uses of SQLInsertClause in com.mysema.query.sql.dml
 

Methods in com.mysema.query.sql.dml that return SQLInsertClause
 SQLInsertClause SQLInsertClause.addBatch()
          Add the current state of bindings as a batch item
 SQLInsertClause SQLInsertClause.addFlag(QueryFlag.Position position, Expression<?> flag)
          Add the given Expression at the given position as a query flag
 SQLInsertClause SQLInsertClause.addFlag(QueryFlag.Position position, String flag)
          Add the given String literal at the given position as a query flag
 SQLInsertClause SQLInsertClause.columns(Path<?>... columns)
           
 SQLInsertClause SQLInsertClause.populate(Object bean)
          Populate the INSERT clause with the properties of the given bean.
<T> SQLInsertClause
SQLInsertClause.populate(T obj, Mapper<T> mapper)
          Populate the INSERT clause with the properties of the given bean using the given Mapper.
 SQLInsertClause SQLInsertClause.select(SubQueryExpression<?> sq)
           
<T> SQLInsertClause
SQLInsertClause.set(Path<T> path, Expression<? extends T> expression)
           
<T> SQLInsertClause
SQLInsertClause.set(Path<T> path, T value)
           
<T> SQLInsertClause
SQLInsertClause.setNull(Path<T> path)
           
 SQLInsertClause SQLInsertClause.values(Object... v)
           
 

Uses of SQLInsertClause in com.mysema.query.sql.mysql
 

Subclasses of SQLInsertClause in com.mysema.query.sql.mysql
 class MySQLReplaceClause
           
 

Methods in com.mysema.query.sql.mysql that return SQLInsertClause
 SQLInsertClause MySQLQueryFactory.insertIgnore(RelationalPath<?> entity)
           
 SQLInsertClause MySQLQueryFactory.insertOnDuplicateKeyUpdate(RelationalPath<?> entity, Expression<?> clause)
           
 SQLInsertClause MySQLQueryFactory.insertOnDuplicateKeyUpdate(RelationalPath<?> entity, String clause)
           
 



Copyright © 2007-2012 Mysema Ltd. All Rights Reserved.