Uses of Interface
org.hibernate.loader.custom.CustomQuery

Packages that use CustomQuery
org.hibernate.engine   
org.hibernate.impl   
org.hibernate.loader.custom   
 

Uses of CustomQuery in org.hibernate.engine
 

Methods in org.hibernate.engine with parameters of type CustomQuery
 List SessionImplementor.listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
          Execute an SQL Query
 ScrollableResults SessionImplementor.scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
          Execute an SQL Query
 

Uses of CustomQuery in org.hibernate.impl
 

Methods in org.hibernate.impl with parameters of type CustomQuery
 List SessionImpl.listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 List StatelessSessionImpl.listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 ScrollableResults SessionImpl.scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 ScrollableResults StatelessSessionImpl.scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 

Uses of CustomQuery in org.hibernate.loader.custom
 

Classes in org.hibernate.loader.custom that implement CustomQuery
 class SQLCustomQuery
          Implements Hibernate's built-in support for native SQL queries.
 

Constructors in org.hibernate.loader.custom with parameters of type CustomQuery
CustomLoader(CustomQuery customQuery, SessionFactoryImplementor factory)