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 classAbstractLimitHandlerDefault implementation ofLimitHandlerinterface.classCUBRIDLimitHandlerLimit handler for CUBRIDclassFirstLimitHandlerclassInformix10LimitHandlerclassLegacyFirstLimitHandlerclassLegacyLimitHandlerLimit handler that delegates all operations to the underlying dialect.classNoopLimitHandlerHandler not supporting query LIMIT clause.classOracle12LimitHandlerALimitHandlerfor databases which support the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLYandOFFSET n ROWS FETCH NEXT m ROWS ONLY.classSQL2008StandardLimitHandlerLIMIT clause handler compatible with ISO and ANSI SQL:2008 standard.classSQLServer2005LimitHandlerLIMIT clause handler compatible with SQL Server 2005 and later.classSQLServer2012LimitHandlerLIMIT clause handler compatible with SQL Server 2012 and later.classSybaseASE157LimitHandlerThis limit handler is very conservative and is only triggered in simple cases involving a select or select distinct.classTopLimitHandlerMethods in org.hibernate.dialect.pagination with parameters of type LimitHandler Modifier and Type Method Description static booleanLimitHelper. 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 LimitHandlerLoader. 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.ResultSetLoader. 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.ResultSetLoader. 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.PreparedStatementLoader. prepareQueryStatement(java.lang.String sql, QueryParameters queryParameters, LimitHandler limitHandler, boolean scroll, SharedSessionContractImplementor session)Obtain a PreparedStatement with all parameters pre-bound.
-