public class SQLInsertClause extends AbstractSQLClause<SQLInsertClause> implements InsertClause<SQLInsertClause>
configuration, context, listeners, useLiterals
Constructor and Description |
---|
SQLInsertClause(Connection connection,
Configuration configuration,
RelationalPath<?> entity) |
SQLInsertClause(Connection connection,
Configuration configuration,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
SQLInsertClause(Connection connection,
SQLTemplates templates,
RelationalPath<?> entity) |
SQLInsertClause(Connection connection,
SQLTemplates templates,
RelationalPath<?> entity,
SQLQuery<?> subQuery) |
Modifier and Type | Method and Description |
---|---|
SQLInsertClause |
addBatch()
Add the current state of bindings as a batch item
|
SQLInsertClause |
addFlag(QueryFlag.Position position,
Expression<?> flag)
Add the given Expression at the given position as a query flag
|
SQLInsertClause |
addFlag(QueryFlag.Position position,
String flag)
Add the given String literal at the given position as a query flag
|
SQLInsertClause |
columns(Path<?>... columns) |
long |
execute() |
<T> T |
executeWithKey(Class<T> type)
Execute the clause and return the generated key cast to the given type.
|
<T> T |
executeWithKey(Path<T> path)
Execute the clause and return the generated key with the type of the
given path.
|
ResultSet |
executeWithKeys()
Execute the clause and return the generated keys as a ResultSet
|
<T> List<T> |
executeWithKeys(Class<T> type) |
<T> List<T> |
executeWithKeys(Path<T> path)
Execute the clause and return the generated key with the type of the
given path.
|
List<SQLBindings> |
getSQL()
Get the SQL string and bindings
|
boolean |
isEmpty() |
SQLInsertClause |
populate(Object bean)
Populate the INSERT clause with the properties of the given bean.
|
<T> SQLInsertClause |
populate(T obj,
Mapper<T> mapper)
Populate the INSERT clause with the properties of the given bean using
the given Mapper.
|
SQLInsertClause |
select(SubQueryExpression<?> sq) |
<T> SQLInsertClause |
set(Path<T> path,
Expression<? extends T> expression) |
<T> SQLInsertClause |
set(Path<T> path,
T value) |
<T> SQLInsertClause |
setNull(Path<T> path) |
String |
toString() |
SQLInsertClause |
values(Object... v) |
addListener, cleanupMDC, close, close, close, createBindings, createSerializer, endContext, executeBatch, logQuery, onException, reset, setParameters, setUseLiterals, startContext
public SQLInsertClause(Connection connection, SQLTemplates templates, RelationalPath<?> entity)
public SQLInsertClause(Connection connection, SQLTemplates templates, RelationalPath<?> entity, SQLQuery<?> subQuery)
public SQLInsertClause(Connection connection, Configuration configuration, RelationalPath<?> entity, SQLQuery<?> subQuery)
public SQLInsertClause(Connection connection, Configuration configuration, RelationalPath<?> entity)
public SQLInsertClause addFlag(QueryFlag.Position position, String flag)
position
- positionflag
- query flagpublic SQLInsertClause addFlag(QueryFlag.Position position, Expression<?> flag)
position
- positionflag
- query flagpublic SQLInsertClause addBatch()
public SQLInsertClause columns(Path<?>... columns)
columns
in interface InsertClause<SQLInsertClause>
@Nullable public <T> T executeWithKey(Path<T> path)
T
- path
- path for keypublic <T> T executeWithKey(Class<T> type)
T
- type
- type of keypublic <T> List<T> executeWithKeys(Path<T> path)
T
- path
- path for keypublic ResultSet executeWithKeys()
public long execute()
execute
in interface DMLClause<SQLInsertClause>
public List<SQLBindings> getSQL()
AbstractSQLClause
getSQL
in class AbstractSQLClause<SQLInsertClause>
public SQLInsertClause select(SubQueryExpression<?> sq)
select
in interface InsertClause<SQLInsertClause>
public <T> SQLInsertClause set(Path<T> path, T value)
set
in interface StoreClause<SQLInsertClause>
public <T> SQLInsertClause set(Path<T> path, Expression<? extends T> expression)
set
in interface StoreClause<SQLInsertClause>
public <T> SQLInsertClause setNull(Path<T> path)
setNull
in interface StoreClause<SQLInsertClause>
public SQLInsertClause values(Object... v)
values
in interface InsertClause<SQLInsertClause>
public SQLInsertClause populate(Object bean)
bean
- bean to use for populationpublic <T> SQLInsertClause populate(T obj, Mapper<T> mapper)
obj
- object to use for populationmapper
- mapper to usepublic boolean isEmpty()
isEmpty
in interface StoreClause<SQLInsertClause>
Copyright © 2007–2015 Querydsl. All rights reserved.