Uses of Class
org.hibernate.sql.exec.spi.JdbcOperationQuerySelect
-
Packages that use JdbcOperationQuerySelect Package Description org.hibernate.query.spi Contains a range of internal abstractions for dealing with query execution, query plans, query options, and query parameters.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.exec.spi SPI for execution of SQL statements via JDBC. -
-
Uses of JdbcOperationQuerySelect in org.hibernate.query.spi
Methods in org.hibernate.query.spi with parameters of type JdbcOperationQuerySelect Modifier and Type Method Description static QueryOptionsSqlOmittingQueryOptions. omitSqlQueryOptions(QueryOptions originalOptions, JdbcOperationQuerySelect select) -
Uses of JdbcOperationQuerySelect in org.hibernate.sql.ast
Methods in org.hibernate.sql.ast that return types with arguments of type JdbcOperationQuerySelect Modifier and Type Method Description SqlAstTranslator<JdbcOperationQuerySelect>SqlAstTranslatorFactory. buildSelectTranslator(SessionFactoryImplementor sessionFactory, SelectStatement statement)Builds a single-use select translator -
Uses of JdbcOperationQuerySelect in org.hibernate.sql.ast.spi
Methods in org.hibernate.sql.ast.spi that return JdbcOperationQuerySelect Modifier and Type Method Description protected JdbcOperationQuerySelectAbstractSqlAstTranslator. translateSelect(SelectStatement selectStatement)Methods in org.hibernate.sql.ast.spi that return types with arguments of type JdbcOperationQuerySelect Modifier and Type Method Description SqlAstTranslator<JdbcOperationQuerySelect>StandardSqlAstTranslatorFactory. buildSelectTranslator(SessionFactoryImplementor sessionFactory, SelectStatement statement) -
Uses of JdbcOperationQuerySelect in org.hibernate.sql.exec.spi
Methods in org.hibernate.sql.exec.spi with parameters of type JdbcOperationQuerySelect Modifier and Type Method Description default <T,R>
TJdbcSelectExecutor. executeQuery(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, int resultCountEstimate, JdbcSelectExecutor.StatementCreator statementCreator, ResultsConsumer<T,R> resultsConsumer)default <T,R>
TJdbcSelectExecutor. executeQuery(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, int resultCountEstimate, ResultsConsumer<T,R> resultsConsumer)default <T,R>
TJdbcSelectExecutor. executeQuery(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, Function<String,PreparedStatement> statementCreator, ResultsConsumer<T,R> resultsConsumer)Deprecated, for removal: This API element is subject to removal in a future version.<T,R>
TJdbcSelectExecutor. executeQuery(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, Class<R> domainResultType, JdbcSelectExecutor.StatementCreator statementCreator, ResultsConsumer<T,R> resultsConsumer)default <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, Class<R> requestedJavaType, ListResultsConsumer.UniqueSemantic uniqueSemantic, int resultCountEstimate)default <R> List<R>JdbcSelectExecutor. list(JdbcOperationQuerySelect jdbcSelect, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, ListResultsConsumer.UniqueSemantic uniqueSemantic)default <R> ScrollableResultsImplementor<R>JdbcSelectExecutor. scroll(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer)default <R> ScrollableResultsImplementor<R>JdbcSelectExecutor. scroll(JdbcOperationQuerySelect jdbcSelect, ScrollMode scrollMode, JdbcParameterBindings jdbcParameterBindings, ExecutionContext executionContext, RowTransformer<R> rowTransformer, int resultCountEstimate)
-