public class SQLInsertClause extends AbstractSQLClause<SQLInsertClause> implements InsertClause<SQLInsertClause>
configuration
Constructor and Description |
---|
SQLInsertClause(java.sql.Connection connection,
Configuration configuration,
RelationalPath<?> entity) |
SQLInsertClause(java.sql.Connection connection,
Configuration configuration,
RelationalPath<?> entity,
AbstractSQLSubQuery<?> subQuery) |
SQLInsertClause(java.sql.Connection connection,
SQLTemplates templates,
RelationalPath<?> entity) |
SQLInsertClause(java.sql.Connection connection,
SQLTemplates templates,
RelationalPath<?> entity,
AbstractSQLSubQuery<?> 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,
java.lang.String flag)
Add the given String literal at the given position as a query flag
|
SQLInsertClause |
columns(Path<?>... columns)
Define the columns to be populated
|
long |
execute()
Execute the clause and return the amount of affected rows
|
<T> T |
executeWithKey(java.lang.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.
|
java.sql.ResultSet |
executeWithKeys()
Execute the clause and return the generated keys as a ResultSet
|
<T> java.util.List<T> |
executeWithKeys(java.lang.Class<T> type) |
<T> java.util.List<T> |
executeWithKeys(Path<T> path)
Execute the clause and return the generated key with the type of the given path.
|
boolean |
isEmpty()
Returns true, if no bindings have been set, otherwise false.
|
SQLInsertClause |
populate(java.lang.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)
Define the populate via subquery
|
<T> SQLInsertClause |
set(Path<T> path,
Expression<? extends T> expression)
Add an expression binding
|
<T> SQLInsertClause |
set(Path<T> path,
T value)
Add a value binding
|
<T> SQLInsertClause |
setNull(Path<T> path)
Bind the given path to null
|
java.lang.String |
toString() |
SQLInsertClause |
values(java.lang.Object... v)
Define the value bindings
|
close, close, executeBatch, setParameters
public SQLInsertClause(java.sql.Connection connection, SQLTemplates templates, RelationalPath<?> entity)
public SQLInsertClause(java.sql.Connection connection, SQLTemplates templates, RelationalPath<?> entity, AbstractSQLSubQuery<?> subQuery)
public SQLInsertClause(java.sql.Connection connection, Configuration configuration, RelationalPath<?> entity, AbstractSQLSubQuery<?> subQuery)
public SQLInsertClause(java.sql.Connection connection, Configuration configuration, RelationalPath<?> entity)
public SQLInsertClause addFlag(QueryFlag.Position position, java.lang.String flag)
position
- flag
- public SQLInsertClause addFlag(QueryFlag.Position position, Expression<?> flag)
position
- flag
- public SQLInsertClause addBatch()
public SQLInsertClause columns(Path<?>... columns)
InsertClause
columns
in interface InsertClause<SQLInsertClause>
@Nullable public <T> T executeWithKey(Path<T> path)
T
- path
- public <T> T executeWithKey(java.lang.Class<T> type)
T
- type
- public <T> java.util.List<T> executeWithKeys(Path<T> path)
T
- path
- public <T> java.util.List<T> executeWithKeys(java.lang.Class<T> type)
public java.sql.ResultSet executeWithKeys()
public long execute()
DMLClause
execute
in interface DMLClause<SQLInsertClause>
public SQLInsertClause select(SubQueryExpression<?> sq)
InsertClause
select
in interface InsertClause<SQLInsertClause>
public <T> SQLInsertClause set(Path<T> path, T value)
StoreClause
set
in interface StoreClause<SQLInsertClause>
path
- path to be updatedvalue
- value to setpublic <T> SQLInsertClause set(Path<T> path, Expression<? extends T> expression)
StoreClause
set
in interface StoreClause<SQLInsertClause>
public <T> SQLInsertClause setNull(Path<T> path)
StoreClause
setNull
in interface StoreClause<SQLInsertClause>
public SQLInsertClause values(java.lang.Object... v)
InsertClause
values
in interface InsertClause<SQLInsertClause>
public java.lang.String toString()
toString
in class java.lang.Object
public SQLInsertClause populate(java.lang.Object bean)
bean
- public <T> SQLInsertClause populate(T obj, Mapper<T> mapper)
obj
- mapper
- public boolean isEmpty()
StoreClause
isEmpty
in interface StoreClause<SQLInsertClause>
Copyright © 2007-2013 Mysema Ltd. All Rights Reserved.