Uses of Interface
org.hibernate.loader.custom.CustomQuery
-
Packages that use CustomQuery Package Description org.hibernate.engine.query.spi Defines support for query plans and stored metadata about queriesorg.hibernate.engine.spi org.hibernate.loader.custom org.hibernate.loader.custom.sql -
-
Uses of CustomQuery in org.hibernate.engine.query.spi
Methods in org.hibernate.engine.query.spi that return CustomQuery Modifier and Type Method Description CustomQuery
NativeSQLQueryPlan. getCustomQuery()
Methods in org.hibernate.engine.query.spi with parameters of type CustomQuery Modifier and Type Method Description default CustomLoader
NativeQueryInterpreter. createCustomLoader(CustomQuery customQuery, SessionFactoryImplementor sessionFactory)
Deprecated.This method will be removed in 6.Constructors in org.hibernate.engine.query.spi with parameters of type CustomQuery Constructor Description NativeSQLQueryPlan(java.lang.String sourceQuery, CustomQuery customQuery)
Constructs a NativeSQLQueryPlan. -
Uses of CustomQuery in org.hibernate.engine.spi
Methods in org.hibernate.engine.spi with parameters of type CustomQuery Modifier and Type Method Description java.util.List
SessionDelegatorBaseImpl. listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
java.util.List
SharedSessionContractImplementor. listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
Execute an SQL QueryScrollableResultsImplementor
SessionDelegatorBaseImpl. scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
ScrollableResultsImplementor
SharedSessionContractImplementor. scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
Execute an SQL Query -
Uses of CustomQuery in org.hibernate.loader.custom
Constructors in org.hibernate.loader.custom with parameters of type CustomQuery Constructor Description CustomLoader(CustomQuery customQuery, SessionFactoryImplementor factory)
-
Uses of CustomQuery in org.hibernate.loader.custom.sql
Classes in org.hibernate.loader.custom.sql that implement CustomQuery Modifier and Type Class Description class
SQLCustomQuery
Implements Hibernate's built-in support for native SQL queries.
-