Uses of Interface
org.hibernate.sql.exec.spi.JdbcParameterBindings
-
Packages that use JdbcParameterBindings Package Description org.hibernate.engine.spi org.hibernate.sql.ast Package defining a SQL AST for use in creating and executing various JDBC operationsorg.hibernate.sql.ast.spi Package defining support for creating and consuming SQL ASTorg.hibernate.sql.ast.tree.expression Contracts related to expressions in a SQL treeorg.hibernate.sql.exec.spi -
-
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, List<JdbcParameter> jdbcParameters, JdbcParameterBindings jdbcParameterBindings)static SubselectFetch.RegistrationHandlerSubselectFetch. createRegistrationHandler(BatchFetchQueue batchFetchQueue, SelectStatement sqlAst, TableGroup tableGroup, List<JdbcParameter> jdbcParameters, JdbcParameterBindings jdbcParameterBindings)Constructors in org.hibernate.engine.spi with parameters of type JdbcParameterBindings Constructor Description SubselectFetch(EntityValuedModelPart entityModelPart, QuerySpec loadingSqlAst, TableGroup ownerTableGroup, List<JdbcParameter> 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 default voidJdbcOperation. bindFilterJdbcParameters(JdbcParameterBindings jdbcParameterBindings)voidJdbcParameterBinder. bindParameterValue(PreparedStatement statement, int startPosition, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext)Bind the appropriate value in the JDBC statementintJdbcMutationExecutor. execute(JdbcMutation jdbcMutation, JdbcParameterBindings jdbcParameterBindings, Function<String,PreparedStatement> statementCreator, BiConsumer<Integer,PreparedStatement> expectationCheck, ExecutionContext executionContext)Perform the executionbooleanAbstractJdbcOperation. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)booleanJdbcOperation. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)booleanJdbcSelect. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)booleanNativeJdbcMutation. isCompatibleWith(JdbcParameterBindings jdbcParameterBindings, QueryOptions queryOptions)<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, ListResultsConsumer.UniqueSemantic uniqueSemantic)<R> ScrollableResultsImplementor<R>JdbcSelectExecutor. scroll(JdbcSelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)<R> Stream<R>JdbcSelectExecutor. stream(JdbcSelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)
-