Uses of Interface
org.hibernate.sql.exec.spi.JdbcParameterBindings
-
Packages that use JdbcParameterBindings Package Description org.hibernate.engine.spi This package defines some central internal SPI abstractions used throughout the implementation of Hibernate.org.hibernate.sql.ast Package defining a SQL AST for use in generation of SQL.org.hibernate.sql.ast.spi Package defining support for creating and consuming a SQL AST.org.hibernate.sql.ast.tree.expression AST nodes representing expressions in a SQL tree.org.hibernate.sql.exec.spi SPI for execution of SQL statements via JDBC. -
-
Uses of JdbcParameterBindings in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi that return JdbcParameterBindings Modifier and Type Method Description JdbcParameterBindingsSubselectFetch. 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 JdbcParameterBindings Modifier and Type Method Description static SubselectFetch.RegistrationHandlerSubselectFetch. createRegistrationHandler(BatchFetchQueue batchFetchQueue, SelectStatement sqlAst, TableGroup tableGroup, JdbcParametersList jdbcParameters, JdbcParameterBindings jdbcParameterBindings)static SubselectFetch.RegistrationHandlerSubselectFetch. createRegistrationHandler(BatchFetchQueue batchFetchQueue, SelectStatement sqlAst, JdbcParametersList jdbcParameters, JdbcParameterBindings jdbcParameterBindings)Constructors in org.hibernate.engine.spi with parameters of type JdbcParameterBindings Constructor Description SubselectFetch(QuerySpec loadingSqlAst, TableGroup ownerTableGroup, JdbcParametersList loadingJdbcParameters, JdbcParameterBindings loadingJdbcParameterBindings, Set<EntityKey> resultingEntityKeys) -
Uses of JdbcParameterBindings in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast with parameters of type JdbcParameterBindings Modifier and Type Method Description TSqlAstTranslator. translate(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions) -
Uses of JdbcParameterBindings in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return JdbcParameterBindings Modifier and Type Method Description protected JdbcParameterBindingsAbstractSqlAstTranslator. getJdbcParameterBindings()Methods in org.hibernate.sql.ast.spi with parameters of type JdbcParameterBindings Modifier and Type Method Description protected intAbstractSqlAstTranslator. getMaxRows(SelectStatement sqlAstSelect, JdbcParameterBindings jdbcParameterBindings, int rowsToSkip)protected intAbstractSqlAstTranslator. getRowsToSkip(SelectStatement sqlAstSelect, JdbcParameterBindings jdbcParameterBindings)protected <R> RAbstractSqlAstTranslator. interpretExpression(Expression expression, JdbcParameterBindings jdbcParameterBindings)protected voidAbstractSqlAstTranslator. renderExpressionAsLiteral(Expression expression, JdbcParameterBindings jdbcParameterBindings)TAbstractSqlAstTranslator. 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 JdbcParameterBindings Modifier and Type Method Description voidJdbcLiteral. bindParameterValue(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext)voidQueryLiteral. 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 JdbcParameterBindings Modifier and Type Field Description static JdbcParameterBindingsJdbcParameterBindings. NO_BINDINGSMethods in org.hibernate.sql.exec.spi with parameters of type JdbcParameterBindings Modifier and Type Method Description voidJdbcParameterBinder. bindParameterValue(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext)Bind the appropriate value in the JDBC statementintJdbcMutationExecutor. execute(JdbcOperationQueryMutation jdbcMutation, JdbcParameterBindings jdbcParameterBindings, Function<String,PreparedStatement> statementCreator, BiConsumer<Integer,PreparedStatement> expectationCheck, ExecutionContext executionContext)Perform the executionbooleanAbstractJdbcOperationQuery. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)booleanJdbcOperationQuery. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)booleanJdbcOperationQueryMutationNative. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)booleanJdbcOperationQuerySelect. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)<R> List<R>JdbcSelectExecutor. list(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> requestedJavaType, ListResultsConsumer.UniqueSemantic uniqueSemantic)default <R> List<R>JdbcSelectExecutor. list(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, ListResultsConsumer.UniqueSemantic uniqueSemantic)<R> ScrollableResultsImplementor<R>JdbcSelectExecutor. scroll(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)<R> Stream<R>JdbcSelectExecutor. stream(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-