Uses of Interface
org.hibernate.query.sqm.tree.SqmDmlStatement
-
Packages that use SqmDmlStatement Package Description org.hibernate.action.internal The various concrete action implementations.org.hibernate.query.sqm.sql Package for the translation of SQM into SQL ASTorg.hibernate.query.sqm.tree This package contains the classes that make up the SQM tree nodes.org.hibernate.query.sqm.tree.delete Nodes representingdeletestatements in the SQM tree.org.hibernate.query.sqm.tree.insert Nodes representinginsertstatements in the SQM tree.org.hibernate.query.sqm.tree.update Nodes representingupdatestatements in the SQM tree. -
-
Uses of SqmDmlStatement in org.hibernate.action.internal
Methods in org.hibernate.action.internal with parameters of type SqmDmlStatement Modifier and Type Method Description static voidBulkOperationCleanupAction. schedule(SharedSessionContractImplementor session, SqmDmlStatement<?> statement) -
Uses of SqmDmlStatement in org.hibernate.query.sqm.sql
Methods in org.hibernate.query.sqm.sql with parameters of type SqmDmlStatement Modifier and Type Method Description SqmTranslator<? extends MutationStatement>SqmTranslatorFactory. createMutationTranslator(SqmDmlStatement<?> sqmDeleteStatement, QueryOptions queryOptions, DomainParameterXref domainParameterXref, QueryParameterBindings domainParameterBindings, LoadQueryInfluencers loadQueryInfluencers, SqlAstCreationContext creationContext)SqmTranslator<? extends MutationStatement>StandardSqmTranslatorFactory. createMutationTranslator(SqmDmlStatement<?> sqmDeleteStatement, QueryOptions queryOptions, DomainParameterXref domainParameterXref, QueryParameterBindings domainParameterBindings, LoadQueryInfluencers loadQueryInfluencers, SqlAstCreationContext creationContext) -
Uses of SqmDmlStatement in org.hibernate.query.sqm.tree
Subinterfaces of SqmDmlStatement in org.hibernate.query.sqm.tree Modifier and Type Interface Description interfaceSqmDeleteOrUpdateStatement<T>In some cases it is useful to be able to handle UPDATE or DELETE SQM trees using a single contract.Classes in org.hibernate.query.sqm.tree that implement SqmDmlStatement Modifier and Type Class Description classAbstractSqmDmlStatement<E>classAbstractSqmRestrictedDmlStatement<T> -
Uses of SqmDmlStatement in org.hibernate.query.sqm.tree.delete
Classes in org.hibernate.query.sqm.tree.delete that implement SqmDmlStatement Modifier and Type Class Description classSqmDeleteStatement<T> -
Uses of SqmDmlStatement in org.hibernate.query.sqm.tree.insert
Subinterfaces of SqmDmlStatement in org.hibernate.query.sqm.tree.insert Modifier and Type Interface Description interfaceSqmInsertStatement<T>The general contract for INSERT statements.Classes in org.hibernate.query.sqm.tree.insert that implement SqmDmlStatement Modifier and Type Class Description classAbstractSqmInsertStatement<T>Convenience base class for InsertSqmStatement implementations.classSqmInsertSelectStatement<T>classSqmInsertValuesStatement<T> -
Uses of SqmDmlStatement in org.hibernate.query.sqm.tree.update
Classes in org.hibernate.query.sqm.tree.update that implement SqmDmlStatement Modifier and Type Class Description classSqmUpdateStatement<T>
-