public class Insert extends CommandWithValues implements ResultTarget, DataChangeStatement
valuesExpressionListcreate, parameters, prepareAlways, session, sqlStatement| Modifier and Type | Method and Description |
|---|---|
void |
addAssignmentForDuplicate(Column column,
Expression expression)
Keep a collection of the columns to pass to update if a duplicate key
happens, for MySQL-style INSERT ...
|
void |
addRow(Value... values)
Add the row to the result set.
|
void |
collectDependencies(java.util.HashSet<DbObject> dependencies)
Find and collect all DbObjects, this Prepared depends on.
|
java.lang.String |
getPlanSQL(boolean alwaysQuote)
Get the SQL statement with the execution plan.
|
int |
getRowCount()
Get the number of rows.
|
java.lang.String |
getStatementName()
Return the name of this statement.
|
Table |
getTable()
Return the target table.
|
int |
getType()
Get the command type as defined in CommandInterface
|
boolean |
isCacheable() |
boolean |
isTransactional()
Check if this command is transactional.
|
void |
limitsWereApplied()
A hint that sorting, offset and limit may be ignored by this result
because they were applied during the query.
|
void |
prepare()
Prepare this statement.
|
ResultInterface |
queryMeta()
Get an empty result set containing the meta data.
|
void |
setColumns(Column[] columns) |
void |
setCommand(Command command)
Set the command.
|
void |
setDeltaChangeCollector(ResultTarget deltaChangeCollector,
DataChangeDeltaTable.ResultOption deltaChangeCollectionMode)
Set the delta change collector and collection mode.
|
void |
setIgnore(boolean ignore)
Sets MySQL-style INSERT IGNORE mode or PostgreSQL-style ON CONFLICT
DO NOTHING.
|
void |
setInsertFromSelect(boolean value) |
void |
setQuery(Query query) |
void |
setSortedInsertMode(boolean sortedInsertMode) |
void |
setSourceTableFilter(TableFilter sourceTableFilter) |
void |
setTable(Table table) |
int |
update()
Execute the statement.
|
addRowcheckCanceled, checkParameters, getCteCleanups, getCurrentRowNumber, getObjectId, getParameters, getPersistedObjectId, getSession, getSimpleSQL, getSQL, getSQL, isQuery, isReadOnly, needRecompile, query, setCteCleanups, setCurrentRowNumber, setParameterList, setPersistedObjectId, setPrepareAlways, setRow, setSession, setSQL, toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetSQLpublic Insert(Session session)
public void setCommand(Command command)
PreparedsetCommand in class Preparedcommand - the new commandpublic Table getTable()
DataChangeStatementgetTable in interface DataChangeStatementpublic void setTable(Table table)
public void setColumns(Column[] columns)
public void setIgnore(boolean ignore)
ignore - ignore duplicatespublic void setQuery(Query query)
public void addAssignmentForDuplicate(Column column, Expression expression)
column - the columnexpression - the expressionpublic void setDeltaChangeCollector(ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode)
DataChangeStatementsetDeltaChangeCollector in interface DataChangeStatementdeltaChangeCollector - target resultdeltaChangeCollectionMode - collection modepublic int update()
Preparedupdate in interface DataChangeStatementupdate in class Preparedpublic void addRow(Value... values)
ResultTargetaddRow in interface ResultTargetvalues - the valuespublic int getRowCount()
ResultTargetgetRowCount in interface ResultTargetpublic void limitsWereApplied()
ResultTargetlimitsWereApplied in interface ResultTargetpublic java.lang.String getPlanSQL(boolean alwaysQuote)
PreparedgetPlanSQL in class PreparedalwaysQuote - quote all identifierspublic void prepare()
Preparedprepare in interface DataChangeStatementprepare in class Preparedpublic boolean isTransactional()
PreparedisTransactional in class Preparedpublic ResultInterface queryMeta()
Preparedpublic void setSortedInsertMode(boolean sortedInsertMode)
public int getType()
Preparedpublic java.lang.String getStatementName()
DataChangeStatementgetStatementName in interface DataChangeStatementpublic void setInsertFromSelect(boolean value)
public boolean isCacheable()
isCacheable in class Preparedpublic void setSourceTableFilter(TableFilter sourceTableFilter)
public void collectDependencies(java.util.HashSet<DbObject> dependencies)
PreparedcollectDependencies in class Prepareddependencies - collection of dependencies to populate