Uses of Interface
org.hibernate.sql.exec.spi.JdbcParameterBindings
Packages that use JdbcParameterBindings
Package
Description
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
SPI for handling SQM UPDATE and DELETE queries
Package defining a SQL AST for use in generation of SQL.
Package defining support for creating and consuming a SQL AST.
AST nodes representing expressions in a SQL tree.
SPI for execution of SQL statements via JDBC.
-
Uses of JdbcParameterBindings in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return JdbcParameterBindingsModifier and TypeMethodDescriptionSubselectFetch.getLoadingJdbcParameterBindings()
The JDBC parameter bindings related toSubselectFetch.getLoadingSqlAst()
for the specific execution that loaded the ownersMethods in org.hibernate.engine.spi with parameters of type JdbcParameterBindingsModifier and TypeMethodDescriptionSubselectFetch.createRegistrationHandler
(BatchFetchQueue batchFetchQueue, SelectStatement sqlAst, TableGroup tableGroup, JdbcParametersList jdbcParameters, JdbcParameterBindings jdbcParameterBindings) SubselectFetch.createRegistrationHandler
(BatchFetchQueue batchFetchQueue, SelectStatement sqlAst, JdbcParametersList jdbcParameters, JdbcParameterBindings jdbcParameterBindings) Constructors in org.hibernate.engine.spi with parameters of type JdbcParameterBindingsModifierConstructorDescriptionSubselectFetch
(QuerySpec loadingSqlAst, TableGroup ownerTableGroup, JdbcParametersList loadingJdbcParameters, JdbcParameterBindings loadingJdbcParameterBindings, Set<EntityKey> resultingEntityKeys) -
Uses of JdbcParameterBindings in org.hibernate.query.sqm.mutation.spi
Methods in org.hibernate.query.sqm.mutation.spi that return JdbcParameterBindingsModifier and TypeMethodDescriptionMultiTableHandler.createJdbcParameterBindings
(DomainQueryExecutionContext executionContext) Create theJdbcParameterBindings
for this multi-table handler based on the execution context.MultiTableHandlerBuildResult.firstJdbcParameterBindings()
Returns the value of thefirstJdbcParameterBindings
record component.Methods in org.hibernate.query.sqm.mutation.spi with parameters of type JdbcParameterBindingsModifier and TypeMethodDescriptionint
MultiTableHandler.execute
(JdbcParameterBindings jdbcParameterBindings, DomainQueryExecutionContext executionContext) Execute the multi-table update or delete indicated by the SQM AST passed in when this Handler was created.boolean
MultiTableHandler.isCompatibleWith
(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions) Constructors in org.hibernate.query.sqm.mutation.spi with parameters of type JdbcParameterBindingsModifierConstructorDescriptionMultiTableHandlerBuildResult
(MultiTableHandler multiTableHandler, JdbcParameterBindings firstJdbcParameterBindings) Creates an instance of aMultiTableHandlerBuildResult
record class. -
Uses of JdbcParameterBindings in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type JdbcParameterBindingsModifier and TypeMethodDescriptionSqlAstTranslator.translate
(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions) Perform the translation and produce the JdbcOperation. -
Uses of JdbcParameterBindings in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return JdbcParameterBindingsModifier and TypeMethodDescriptionprotected JdbcParameterBindings
AbstractSqlAstTranslator.getJdbcParameterBindings()
Methods in org.hibernate.sql.ast.spi with parameters of type JdbcParameterBindingsModifier and TypeMethodDescriptionprotected int
AbstractSqlAstTranslator.getMaxRows
(SelectStatement sqlAstSelect, JdbcParameterBindings jdbcParameterBindings, int rowsToSkip) protected int
AbstractSqlAstTranslator.getRowsToSkip
(SelectStatement sqlAstSelect, JdbcParameterBindings jdbcParameterBindings) protected <R> R
AbstractSqlAstTranslator.interpretExpression
(Expression expression, JdbcParameterBindings jdbcParameterBindings) protected void
AbstractSqlAstTranslator.renderExpressionAsLiteral
(Expression expression, JdbcParameterBindings jdbcParameterBindings) AbstractSqlAstTranslator.translate
(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions) -
Uses of JdbcParameterBindings in org.hibernate.sql.ast.tree.expression
Methods in org.hibernate.sql.ast.tree.expression with parameters of type JdbcParameterBindingsModifier and TypeMethodDescriptionvoid
JdbcLiteral.bindParameterValue
(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) void
QueryLiteral.bindParameterValue
(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) void
UnparsedNumericLiteral.bindParameterValue
(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) -
Uses of JdbcParameterBindings in org.hibernate.sql.exec.spi
Fields in org.hibernate.sql.exec.spi declared as JdbcParameterBindingsModifier and TypeFieldDescriptionstatic final JdbcParameterBindings
JdbcParameterBindings.NO_BINDINGS
Methods in org.hibernate.sql.exec.spi with parameters of type JdbcParameterBindingsModifier and TypeMethodDescriptionvoid
JdbcParameterBinder.bindParameterValue
(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext) Bind the appropriate value in the JDBC statementint
JdbcMutationExecutor.execute
(JdbcOperationQueryMutation jdbcMutation, JdbcParameterBindings jdbcParameterBindings, Function<String, PreparedStatement> statementCreator, BiConsumer<Integer, PreparedStatement> expectationCheck, ExecutionContext executionContext) Perform the executiondefault <T,
R> T JdbcSelectExecutor.executeQuery
(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, int resultCountEstimate, JdbcSelectExecutor.StatementCreator statementCreator, ResultsConsumer<T, R> resultsConsumer) default <T,
R> T JdbcSelectExecutor.executeQuery
(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, int resultCountEstimate, ResultsConsumer<T, R> resultsConsumer) <T,
R> T JdbcSelectExecutor.executeQuery
(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, JdbcSelectExecutor.StatementCreator statementCreator, ResultsConsumer<T, R> resultsConsumer) boolean
CacheableJdbcOperation.isCompatibleWith
(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions) Whether the given arguments are compatible with this operation's state.default <R> List
<R> JdbcSelectExecutor.list
(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> requestedJavaType, ListResultsConsumer.UniqueSemantic uniqueSemantic) default <R> List
<R> JdbcSelectExecutor.list
(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> requestedJavaType, ListResultsConsumer.UniqueSemantic uniqueSemantic, int resultCountEstimate) default <R> List
<R> JdbcSelectExecutor.list
(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, ListResultsConsumer.UniqueSemantic uniqueSemantic) default <R> ScrollableResultsImplementor
<R> JdbcSelectExecutor.scroll
(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer) default <R> ScrollableResultsImplementor
<R> JdbcSelectExecutor.scroll
(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, int resultCountEstimate)