Uses of Interface
org.hibernate.dialect.pagination.LimitHandler

Packages that use LimitHandler
org.hibernate.dialect This package abstracts the SQL dialect of the underlying database. 
org.hibernate.dialect.pagination   
org.hibernate.loader This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects. 
 

Uses of LimitHandler in org.hibernate.dialect
 

Methods in org.hibernate.dialect that return LimitHandler
 LimitHandler Dialect.buildLimitHandler(String sql, RowSelection selection)
          Build delegate managing LIMIT clause.
 LimitHandler SQLServer2005Dialect.buildLimitHandler(String sql, RowSelection selection)
           
 

Uses of LimitHandler in org.hibernate.dialect.pagination
 

Classes in org.hibernate.dialect.pagination that implement LimitHandler
 class AbstractLimitHandler
          Default implementation of LimitHandler interface.
 class LegacyLimitHandler
          Limit handler that delegates all operations to the underlying dialect.
 class NoopLimitHandler
          Handler not supporting query LIMIT clause.
 class SQLServer2005LimitHandler
          LIMIT clause handler compatible with SQL Server 2005 and later.
 

Methods in org.hibernate.dialect.pagination with parameters of type LimitHandler
static boolean LimitHelper.useLimit(LimitHandler limitHandler, RowSelection selection)
           
 

Uses of LimitHandler in org.hibernate.loader
 

Methods in org.hibernate.loader that return LimitHandler
protected  LimitHandler Loader.getLimitHandler(String sql, RowSelection selection)
          Build LIMIT clause handler applicable for given selection criteria.
 

Methods in org.hibernate.loader with parameters of type LimitHandler
protected  ResultSet Loader.getResultSet(PreparedStatement st, RowSelection selection, LimitHandler limitHandler, boolean autodiscovertypes, SessionImplementor session)
          Execute given PreparedStatement, advance to the first result and return SQL ResultSet.
protected  PreparedStatement Loader.prepareQueryStatement(String sql, QueryParameters queryParameters, LimitHandler limitHandler, boolean scroll, SessionImplementor session)
          Obtain a PreparedStatement with all parameters pre-bound.
 



Copyright © 2001-2012 Red Hat, Inc. All Rights Reserved.