站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > Hibernate 3.2.3 正式版 API 英文文档

Uses of Interface org.hibernate.loader.custom.CustomQuery (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档


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

Packages that use CustomQuery
org.hibernate.engine This package contains classes that are "shared" by other packages, and implementations of some key algorithms. 
org.hibernate.impl This package contains implementations of the central Hibernate APIs, especially the Hibernate session. 
org.hibernate.loader.custom This package defines a framework for custom loaders that accept handwritten SQL  
org.hibernate.loader.custom.sql   
 

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 StatelessSessionImpl.listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 ScrollableResults StatelessSessionImpl.scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 ScrollableResults SessionImpl.scrollCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 List SessionImpl.listCustomQuery(CustomQuery customQuery, QueryParameters queryParameters)
           
 

Uses of CustomQuery in org.hibernate.loader.custom
 

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

Uses of CustomQuery in org.hibernate.loader.custom.sql
 

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