Package | Description |
---|---|
com.mysema.query.sql |
SQL/JDBC support for Querydsl
|
com.mysema.query.sql.dml |
DML operations support
|
com.mysema.query.sql.mysql |
MySQL support
|
Modifier and Type | Interface and Description |
---|---|
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
|
Modifier and Type | Method and Description |
---|---|
SQLInsertClause |
AbstractSQLQueryFactory.insert(RelationalPath<?> path) |
Modifier and Type | Method and Description |
---|---|
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,
java.lang.String flag)
Add the given String literal at the given position as a query flag
|
SQLInsertClause |
SQLInsertClause.columns(Path<?>... columns) |
SQLInsertClause |
SQLInsertClause.populate(java.lang.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(java.lang.Object... v) |
Modifier and Type | Class and Description |
---|---|
class |
MySQLReplaceClause |
Modifier and Type | Method and Description |
---|---|
SQLInsertClause |
MySQLQueryFactory.insertIgnore(RelationalPath<?> entity) |
SQLInsertClause |
MySQLQueryFactory.insertOnDuplicateKeyUpdate(RelationalPath<?> entity,
Expression<?> clause) |
SQLInsertClause |
MySQLQueryFactory.insertOnDuplicateKeyUpdate(RelationalPath<?> entity,
java.lang.String clause) |
Copyright © 2007-2013 Mysema Ltd. All Rights Reserved.