Class TableBasedUpdateHandler
- java.lang.Object
-
- org.hibernate.query.sqm.mutation.spi.AbstractMutationHandler
-
- org.hibernate.query.sqm.mutation.internal.temptable.TableBasedUpdateHandler
-
- All Implemented Interfaces:
Handler
,UpdateHandler
public class TableBasedUpdateHandler extends AbstractMutationHandler implements UpdateHandler
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
TableBasedUpdateHandler.ExecutionDelegate
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
execute(DomainQueryExecutionContext executionContext)
Execute the multi-table update or delete indicated by the SQM AST passed in when this Handler was created.SqmUpdateStatement<?>
getSqmDeleteOrUpdateStatement()
protected SqmUpdateStatement<?>
getSqmUpdate()
-
Methods inherited from class org.hibernate.query.sqm.mutation.spi.AbstractMutationHandler
getEntityDescriptor, getSessionFactory
-
-
-
-
Method Detail
-
getSqmUpdate
protected SqmUpdateStatement<?> getSqmUpdate()
-
getSqmDeleteOrUpdateStatement
public SqmUpdateStatement<?> getSqmDeleteOrUpdateStatement()
- Overrides:
getSqmDeleteOrUpdateStatement
in classAbstractMutationHandler
-
execute
public int execute(DomainQueryExecutionContext executionContext)
Description copied from interface:Handler
Execute the multi-table update or delete indicated by the SQM AST passed in when this Handler was created.
-
-