Uses of Interface
org.hibernate.dialect.pagination.LimitHandler
-
Packages that use LimitHandler Package Description org.hibernate.dialect This package abstracts over the multifarious dialects of SQL understood by the databases supported by Hibernate.org.hibernate.dialect.pagination Support forDialect-specific pagination strategies.org.hibernate.sql.results.jdbc.internal -
-
Uses of LimitHandler in org.hibernate.dialect
Methods in org.hibernate.dialect that return LimitHandler Modifier and Type Method Description LimitHandlerAbstractHANADialect. getLimitHandler()LimitHandlerCockroachDialect. getLimitHandler()LimitHandlerDB2400Dialect. getLimitHandler()Deprecated.LimitHandlerDB2Dialect. getLimitHandler()LimitHandlerDB2iDialect. getLimitHandler()LimitHandlerDB2zDialect. getLimitHandler()LimitHandlerDerbyDialect. getLimitHandler()LimitHandlerDialect. getLimitHandler()Obtain aLimitHandlerthat implements pagination support forQuery.setMaxResults(int)andQuery.setFirstResult(int).LimitHandlerDialectDelegateWrapper. getLimitHandler()LimitHandlerH2Dialect. getLimitHandler()LimitHandlerHSQLDialect. getLimitHandler()LimitHandlerMySQLDialect. getLimitHandler()LimitHandlerOracleDialect. getLimitHandler()LimitHandlerPostgreSQLDialect. getLimitHandler()LimitHandlerSpannerDialect. getLimitHandler()LimitHandlerSQLServerDialect. getLimitHandler()LimitHandlerSybaseASEDialect. getLimitHandler() -
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.classAbstractNoOffsetLimitHandlerSuperclass forLimitHandlers that don't support offsets at all.classAbstractSimpleLimitHandlerSuperclass for simpleLimitHandlers that don't support specifying an offset without a limit.classDB2LimitHandlerALimitHandlerfor DB2 11.1 which supports the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLYandOFFSET n ROWS FETCH NEXT m ROWS ONLY, with the only wrinkle being that this clause comes after theFOR UPDATEand other similar clauses.classDerbyLimitHandlerALimitHandlerfor Apache Derby, which fully supports the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLYandOFFSET n ROWS FETCH NEXT m ROWS ONLY.classFetchLimitHandlerALimitHandlerfor databases which support the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLYbut notOFFSET n ROWS.classLegacyDB2LimitHandlerALimitHandlerfor DB2.classLegacyHSQLLimitHandlerALimitHandlerfor HSQL prior to 2.0.classLegacyOracleLimitHandlerALimitHandlerfor Oracle prior to 12c, which usesROWNUM.classLimitLimitHandlerLimit handler for MySQL and CUBRID which support the syntaxLIMIT nandLIMIT m, n.classLimitOffsetLimitHandlerALimitHandlerfor databases like PostgreSQL, H2, and HSQL that support the syntaxLIMIT n OFFSET m.classNoopLimitHandlerHandler not supporting query LIMIT clause.classOffsetFetchLimitHandlerALimitHandlerfor databases which support the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLYandOFFSET n ROWS FETCH NEXT m ROWS ONLY.classOracle12LimitHandlerALimitHandlerfor databases which support the ANSI SQL standard syntaxFETCH FIRST m ROWS ONLYandOFFSET n ROWS FETCH NEXT m ROWS ONLY.classSQLServer2005LimitHandlerclassSQLServer2012LimitHandlerALimitHandlercompatible with SQL Server 2012 which introduced support for the ANSI SQL standard syntaxOFFSET m ROWS FETCH NEXT n ROWS ONLY, though this syntax is considered part of theORDER BYclause, and with the wrinkle that bothORDER BYand theOFFSETclause are required.classTopLimitHandlerALimitHandlerfor Transact SQL and similar databases which support the syntaxSELECT TOP n.Fields in org.hibernate.dialect.pagination declared as LimitHandler Modifier and Type Field Description static LimitHandlerAbstractLimitHandler. NO_LIMIT -
Uses of LimitHandler in org.hibernate.sql.results.jdbc.internal
Methods in org.hibernate.sql.results.jdbc.internal that return LimitHandler Modifier and Type Method Description LimitHandlerDeferredResultSetAccess. getLimitHandler()
-