Uses of Class
org.hibernate.dialect.pagination.OffsetFetchLimitHandler
-
Packages that use OffsetFetchLimitHandler Package Description org.hibernate.dialect.pagination Support forDialect-specific pagination strategies. -
-
Uses of OffsetFetchLimitHandler in org.hibernate.dialect.pagination
Subclasses of OffsetFetchLimitHandler in org.hibernate.dialect.pagination Modifier and Type Class Description 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.classSQLServer2012LimitHandlerALimitHandlercompatible 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.Fields in org.hibernate.dialect.pagination declared as OffsetFetchLimitHandler Modifier and Type Field Description static OffsetFetchLimitHandlerOffsetFetchLimitHandler. INSTANCE
-