Uses of Interface
org.hibernate.engine.jdbc.mutation.group.PreparedStatementGroup
-
Packages that use PreparedStatementGroup Package Description org.hibernate.engine.jdbc.batch.internal Internals for JDBC batching support.org.hibernate.engine.jdbc.batch.spi Defines contracts for JDBC batching support.org.hibernate.engine.jdbc.internal Internals for supporting various aspects of JDBC interactionorg.hibernate.engine.jdbc.mutation.internal org.hibernate.engine.jdbc.spi 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 PreparedStatementGroup Modifier and Type Method Description PreparedStatementGroup
BatchImpl. getStatementGroup()
Method parameters in org.hibernate.engine.jdbc.batch.internal with type arguments of type PreparedStatementGroup Modifier and Type Method Description Batch
BatchBuilderImpl. buildBatch(BatchKey key, Integer explicitBatchSize, Supplier<PreparedStatementGroup> statementGroupSupplier, JdbcCoordinator jdbcCoordinator)
Constructors in org.hibernate.engine.jdbc.batch.internal with parameters of type PreparedStatementGroup Constructor Description BatchImpl(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 PreparedStatementGroup Modifier and Type Method Description PreparedStatementGroup
Batch. getStatementGroup()
Method parameters in org.hibernate.engine.jdbc.batch.spi with type arguments of type PreparedStatementGroup Modifier and Type Method Description Batch
BatchBuilder. 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 Modifier and Type Method Description Batch
JdbcCoordinatorImpl. getBatch(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier)
-
Uses of PreparedStatementGroup in org.hibernate.engine.jdbc.mutation.internal
Classes in org.hibernate.engine.jdbc.mutation.internal that implement PreparedStatementGroup Modifier and Type Class Description class
PreparedStatementGroupNone
class
PreparedStatementGroupSingleTable
PreparedStatementGroup implementation for cases where we have just a single operationclass
PreparedStatementGroupStandard
A group ofPreparedStatementDetails
references related to multi-table entity mappings.Fields in org.hibernate.engine.jdbc.mutation.internal declared as PreparedStatementGroup Modifier and Type Field Description protected PreparedStatementGroup
MutationExecutorPostInsert. secondaryTablesStatementGroup
Any non-batched JDBC statementsMethods in org.hibernate.engine.jdbc.mutation.internal that return PreparedStatementGroup Modifier and Type Method Description protected PreparedStatementGroup
MutationExecutorStandard. getNonBatchedStatementGroup()
static PreparedStatementGroup
ModelMutationHelper. toPreparedStatementGroup(MutationType mutationType, MutationTarget<?> mutationTarget, 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 PreparedStatementGroup Modifier and Type Method Description Batch
JdbcCoordinator. getBatch(BatchKey key, Integer batchSize, Supplier<PreparedStatementGroup> statementGroupSupplier)
Get the batch for the supplied key, creating one if needed using the supplied statementGroupSupplier.
-