Uses of Class
org.hibernate.engine.spi.RowSelection

Packages that use RowSelection
org.hibernate.dialect This package abstracts the SQL dialect of the underlying database. 
org.hibernate.dialect.pagination   
org.hibernate.engine.spi   
org.hibernate.internal An internal package containing mostly implementations of central Hibernate APIs. 
org.hibernate.loader This package defines functionality for processing JDBC result sets and returning complex graphs of persistent objects. 
 

Uses of RowSelection in org.hibernate.dialect
 

Methods in org.hibernate.dialect with parameters of type RowSelection
 LimitHandler Dialect.buildLimitHandler(String sql, RowSelection selection)
          Build delegate managing LIMIT clause.
 LimitHandler SQLServer2005Dialect.buildLimitHandler(String sql, RowSelection selection)
           
 

Uses of RowSelection in org.hibernate.dialect.pagination
 

Fields in org.hibernate.dialect.pagination declared as RowSelection
protected  RowSelection AbstractLimitHandler.selection
           
 

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

Constructors in org.hibernate.dialect.pagination with parameters of type RowSelection
AbstractLimitHandler(String sql, RowSelection selection)
          Default constructor.
LegacyLimitHandler(Dialect dialect, String sql, RowSelection selection)
           
NoopLimitHandler(String sql, RowSelection selection)
           
SQLServer2005LimitHandler(String sql, RowSelection selection)
           
 

Uses of RowSelection in org.hibernate.engine.spi
 

Methods in org.hibernate.engine.spi that return RowSelection
 RowSelection QueryParameters.getRowSelection()
           
 

Methods in org.hibernate.engine.spi with parameters of type RowSelection
 QueryParameters QueryParameters.createCopyUsing(RowSelection selection)
           
 void QueryParameters.setRowSelection(RowSelection selection)
           
 

Constructors in org.hibernate.engine.spi with parameters of type RowSelection
QueryParameters(Type[] positionalParameterTypes, Object[] positionalParameterValues, LockOptions lockOptions, RowSelection rowSelection, boolean isReadOnlyInitialized, boolean readOnly, boolean cacheable, String cacheRegion, String comment, boolean isLookupByNaturalKey, ResultTransformer transformer)
           
QueryParameters(Type[] positionalParameterTypes, Object[] positionalParameterValues, Map<String,TypedValue> namedParameters, LockOptions lockOptions, RowSelection rowSelection, boolean isReadOnlyInitialized, boolean readOnly, boolean cacheable, String cacheRegion, String comment, Serializable[] collectionKeys, Object optionalObject, String optionalEntityName, Serializable optionalId, ResultTransformer transformer)
           
QueryParameters(Type[] positionalParameterTypes, Object[] positionalParameterValues, Map<String,TypedValue> namedParameters, LockOptions lockOptions, RowSelection rowSelection, boolean isReadOnlyInitialized, boolean readOnly, boolean cacheable, String cacheRegion, String comment, Serializable[] collectionKeys, ResultTransformer transformer)
           
 

Uses of RowSelection in org.hibernate.internal
 

Methods in org.hibernate.internal that return RowSelection
protected  RowSelection AbstractQueryImpl.getRowSelection()
           
 RowSelection AbstractQueryImpl.getSelection()
           
 

Uses of RowSelection in org.hibernate.loader
 

Methods in org.hibernate.loader with parameters of type RowSelection
protected  LimitHandler Loader.getLimitHandler(String sql, RowSelection selection)
          Build LIMIT clause handler applicable for given selection criteria.
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.
 



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