Uses of Interface
org.hibernate.query.sqm.mutation.spi.SqmMultiTableInsertStrategy
-
Packages that use SqmMultiTableInsertStrategy Package Description org.hibernate.boot.internal org.hibernate.boot.spi A range of SPIs allowing integration with—and customization of—the process of building metadata.org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.metamodel.mapping Defines the runtime mapping metamodel, which describes the mapping of the application's domain model parts (entities, attributes) to relational database objects (tables, columns).org.hibernate.persister.entity This package abstracts persistence mechanisms for entities.org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.org.hibernate.query.sqm.internal Package for the SQM-backed Query implementation detailsorg.hibernate.query.sqm.mutation.internal org.hibernate.query.sqm.mutation.internal.cte org.hibernate.query.sqm.mutation.internal.temptable Support for multi-table SQM mutation (insert, update, delete) operations using a table to temporarily hold the matching ids.org.hibernate.query.sqm.mutation.spi SPI for handling SQM UPDATE and DELETE queries -
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategy
SessionFactoryOptionsBuilder. getCustomSqmMultiTableInsertStrategy()
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.boot.spi
Methods in org.hibernate.boot.spi that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategy
AbstractDelegatingSessionFactoryOptions. getCustomSqmMultiTableInsertStrategy()
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.dialect
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.metamodel.mapping
Methods in org.hibernate.metamodel.mapping that return SqmMultiTableInsertStrategy Modifier and Type Method Description default SqmMultiTableInsertStrategy
EntityMappingType. getSqmMultiTableInsertStrategy()
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.persister.entity
Methods in org.hibernate.persister.entity that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategy
AbstractEntityPersister. getSqmMultiTableInsertStrategy()
SqmMultiTableInsertStrategy
EntityPersister. getSqmMultiTableInsertStrategy()
protected static SqmMultiTableInsertStrategy
AbstractEntityPersister. interpretSqmMultiTableInsertStrategy(AbstractEntityPersister entityMappingDescriptor, MappingModelCreationProcess creationProcess)
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.spi
Methods in org.hibernate.query.spi that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategy
QueryEngineOptions. getCustomSqmMultiTableInsertStrategy()
Contract for handling SQM trees representing insertion (INSERT) queries where the target of the mutation is a multi-table entity. -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.internal
Constructors in org.hibernate.query.sqm.internal with parameters of type SqmMultiTableInsertStrategy Constructor Description MultiTableInsertQueryPlan(SqmInsertStatement<?> sqmInsert, DomainParameterXref domainParameterXref, SqmMultiTableInsertStrategy mutationStrategy)
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.internal
Methods in org.hibernate.query.sqm.mutation.internal that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategy
SqmMultiTableMutationStrategyProviderStandard. createInsertStrategy(EntityMappingType rootEntityDescriptor, MappingModelCreationProcess creationProcess)
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.internal.cte
Classes in org.hibernate.query.sqm.mutation.internal.cte that implement SqmMultiTableInsertStrategy Modifier and Type Class Description class
CteInsertStrategy
-
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.internal.temptable
Classes in org.hibernate.query.sqm.mutation.internal.temptable that implement SqmMultiTableInsertStrategy Modifier and Type Class Description class
GlobalTemporaryTableInsertStrategy
Strategy based on ANSI SQL's definition of a "global temporary table".class
LocalTemporaryTableInsertStrategy
Strategy based on ANSI SQL's definition of a "local temporary table" (local to each db session).class
PersistentTableInsertStrategy
This is a strategy that mimics temporary tables for databases which do not support temporary tables. -
Uses of SqmMultiTableInsertStrategy in org.hibernate.query.sqm.mutation.spi
Methods in org.hibernate.query.sqm.mutation.spi that return SqmMultiTableInsertStrategy Modifier and Type Method Description SqmMultiTableInsertStrategy
SqmMultiTableMutationStrategyProvider. createInsertStrategy(EntityMappingType rootEntityDescriptor, MappingModelCreationProcess creationProcess)
Determine the SqmMultiTableInsertStrategy to use for the given entity
-