Uses of Interface
org.hibernate.dialect.pagination.LimitHandler
-
Packages that use LimitHandler Package Description org.hibernate.dialect org.hibernate.dialect.pagination Support for Dialect-specific pagination strategiesorg.hibernate.loader -
-
Uses of LimitHandler in org.hibernate.dialect
-
Uses of LimitHandler in org.hibernate.dialect.pagination
Classes in org.hibernate.dialect.pagination that implement LimitHandler Modifier and Type Class Description class
AbstractLimitHandler
Default implementation ofLimitHandler
interface.class
CUBRIDLimitHandler
Limit handler for CUBRIDclass
FirstLimitHandler
class
Informix10LimitHandler
class
LegacyFirstLimitHandler
class
LegacyLimitHandler
Limit handler that delegates all operations to the underlying dialect.class
NoopLimitHandler
Handler not supporting query LIMIT clause.class
Oracle12LimitHandler
ALimitHandler
for databases which support the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLY
andOFFSET n ROWS FETCH NEXT m ROWS ONLY
.class
SQL2008StandardLimitHandler
LIMIT clause handler compatible with ISO and ANSI SQL:2008 standard.class
SQLServer2005LimitHandler
LIMIT clause handler compatible with SQL Server 2005 and later.class
SQLServer2012LimitHandler
LIMIT clause handler compatible with SQL Server 2012 and later.class
SybaseASE157LimitHandler
This limit handler is very conservative and is only triggered in simple cases involving a select or select distinct.class
TopLimitHandler
Methods in org.hibernate.dialect.pagination with parameters of type LimitHandler Modifier and Type Method Description static boolean
LimitHelper. useLimit(LimitHandler limitHandler, RowSelection selection)
Should limit be applied? -
Uses of LimitHandler in org.hibernate.loader
Methods in org.hibernate.loader that return LimitHandler Modifier and Type Method Description protected LimitHandler
Loader. getLimitHandler(RowSelection selection)
Build LIMIT clause handler applicable for given selection criteria.Methods in org.hibernate.loader with parameters of type LimitHandler Modifier and Type Method Description protected java.sql.ResultSet
Loader. getResultSet(java.sql.CallableStatement st, RowSelection selection, LimitHandler limitHandler, boolean autodiscovertypes, SharedSessionContractImplementor session)
Execute given CallableStatement, advance to the first result and return SQL ResultSet.protected java.sql.ResultSet
Loader. getResultSet(java.sql.PreparedStatement st, RowSelection selection, LimitHandler limitHandler, boolean autodiscovertypes, SharedSessionContractImplementor session)
Execute given PreparedStatement, advance to the first result and return SQL ResultSet.protected java.sql.PreparedStatement
Loader. prepareQueryStatement(java.lang.String sql, QueryParameters queryParameters, LimitHandler limitHandler, boolean scroll, SharedSessionContractImplementor session)
Obtain a PreparedStatement with all parameters pre-bound.
-