Uses of Interface
org.hibernate.engine.jdbc.mutation.group.PreparedStatementGroup
Packages that use PreparedStatementGroup
Package
Description
Internals for JDBC batching support.
Defines contracts for JDBC batching support.
Internals for supporting various aspects of JDBC interaction
SPI contracts supporting various aspects of JDBC interaction.
-
Uses of PreparedStatementGroup in org.hibernate.engine.jdbc.batch.internal
Methods in org.hibernate.engine.jdbc.batch.internal that return PreparedStatementGroupMethod parameters in org.hibernate.engine.jdbc.batch.internal with type arguments of type PreparedStatementGroupModifier and TypeMethodDescriptionBatchBuilderImpl.buildBatch
(BatchKey key, Integer explicitBatchSize, Supplier<PreparedStatementGroup> statementGroupSupplier, JdbcCoordinator jdbcCoordinator) Constructors in org.hibernate.engine.jdbc.batch.internal with parameters of type PreparedStatementGroupModifierConstructorDescriptionBatchImpl
(BatchKey key, PreparedStatementGroup statementGroup, int batchSizeToUse, JdbcCoordinator jdbcCoordinator) -
Uses of PreparedStatementGroup in org.hibernate.engine.jdbc.batch.spi
Methods in org.hibernate.engine.jdbc.batch.spi that return PreparedStatementGroupMethod parameters in org.hibernate.engine.jdbc.batch.spi with type arguments of type PreparedStatementGroupModifier and TypeMethodDescriptionBatchBuilder.buildBatch
(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier, JdbcCoordinator jdbcCoordinator) Build a batch. -
Uses of PreparedStatementGroup in org.hibernate.engine.jdbc.internal
Method parameters in org.hibernate.engine.jdbc.internal with type arguments of type PreparedStatementGroup -
Uses of PreparedStatementGroup in org.hibernate.engine.jdbc.mutation.internal
Classes in org.hibernate.engine.jdbc.mutation.internal that implement PreparedStatementGroupModifier and TypeClassDescriptionclass
class
class
PreparedStatementGroup
implementation for cases where we have just a single operationclass
A group ofPreparedStatementDetails
references related to multi-table entity mappings.Methods in org.hibernate.engine.jdbc.mutation.internal that return PreparedStatementGroupModifier and TypeMethodDescriptionprotected PreparedStatementGroup
MutationExecutorStandard.getNonBatchedStatementGroup()
static PreparedStatementGroup
ModelMutationHelper.toPreparedStatementGroup
(MutationType mutationType, MutationTarget<?> mutationTarget, GeneratedValuesMutationDelegate delegate, List<PreparableMutationOperation> mutations, SharedSessionContractImplementor session) -
Uses of PreparedStatementGroup in org.hibernate.engine.jdbc.spi
Method parameters in org.hibernate.engine.jdbc.spi with type arguments of type PreparedStatementGroupModifier and TypeMethodDescriptionJdbcCoordinator.getBatch
(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier) Get the batch for the supplied key, creating one if needed using the supplied statementGroupSupplier.