Uses of Interface
org.hibernate.sql.model.PreparableMutationOperation
-
Packages that use PreparableMutationOperation Package Description org.hibernate.engine.jdbc.mutation.internal org.hibernate.sql.model.jdbc Extensions toJdbcOperation
for model mutations. -
-
Uses of PreparableMutationOperation in org.hibernate.engine.jdbc.mutation.internal
Methods in org.hibernate.engine.jdbc.mutation.internal that return PreparableMutationOperation Modifier and Type Method Description protected PreparableMutationOperation
AbstractSingleMutationExecutor. getMutationOperation()
Methods in org.hibernate.engine.jdbc.mutation.internal with parameters of type PreparableMutationOperation Modifier and Type Method Description static PreparedStatementDetails
ModelMutationHelper. identityPreparation(PreparableMutationOperation jdbcMutation, SharedSessionContractImplementor session)
static PreparedStatementDetails
ModelMutationHelper. standardPreparation(PreparableMutationOperation jdbcMutation, SharedSessionContractImplementor session)
static PreparedStatement
ModelMutationHelper. standardStatementPreparation(PreparableMutationOperation jdbcMutation, SharedSessionContractImplementor session)
Method parameters in org.hibernate.engine.jdbc.mutation.internal with type arguments of type PreparableMutationOperation Modifier and Type Method Description static PreparedStatementGroup
ModelMutationHelper. toPreparedStatementGroup(MutationType mutationType, MutationTarget<?> mutationTarget, List<PreparableMutationOperation> mutations, SharedSessionContractImplementor session)
Constructors in org.hibernate.engine.jdbc.mutation.internal with parameters of type PreparableMutationOperation Constructor Description AbstractSingleMutationExecutor(PreparableMutationOperation mutationOperation, SharedSessionContractImplementor session)
MutationExecutorSingleBatched(PreparableMutationOperation mutationOperation, BatchKey batchKey, int batchSize, SharedSessionContractImplementor session)
MutationExecutorSingleNonBatched(PreparableMutationOperation mutationOperation, SharedSessionContractImplementor session)
PreparedStatementDetailsStandard(PreparableMutationOperation tableMutation, String sql, Supplier<PreparedStatement> jdbcStatementCreator, Expectation expectation, JdbcServices jdbcServices)
PreparedStatementDetailsStandard(PreparableMutationOperation tableMutation, Supplier<PreparedStatement> jdbcStatementCreator, JdbcServices jdbcServices)
PreparedStatementGroupSingleTable(PreparableMutationOperation jdbcMutation, SharedSessionContractImplementor session)
Constructor parameters in org.hibernate.engine.jdbc.mutation.internal with type arguments of type PreparableMutationOperation Constructor Description PreparedStatementGroupStandard(MutationType mutationType, MutationTarget<?> mutationTarget, List<PreparableMutationOperation> jdbcMutations, SharedSessionContractImplementor session)
-
Uses of PreparableMutationOperation in org.hibernate.sql.model.jdbc
Subinterfaces of PreparableMutationOperation in org.hibernate.sql.model.jdbc Modifier and Type Interface Description interface
JdbcMutationOperation
JdbcOperation extension for model mutations stemming from persistence context flushesClasses in org.hibernate.sql.model.jdbc that implement PreparableMutationOperation Modifier and Type Class Description class
AbstractJdbcMutation
class
JdbcDeleteMutation
class
JdbcInsertMutation
Descriptor for a table insert originating from a flushclass
JdbcUpdateMutation
Describes the update of a single tableclass
MergeOperation
JdbcMutation implementation for MERGE handlingclass
UpsertOperation
JdbcMutation implementation for UPSERT handling
-