class |
AbstractNoOffsetLimitHandler |
Superclass for LimitHandler s that don't support
offsets at all.
|
class |
AbstractSimpleLimitHandler |
Superclass for simple LimitHandler s that don't
support specifying an offset without a limit.
|
class |
DB2LimitHandler |
A LimitHandler for DB2 11.1 which supports the
ANSI SQL standard syntax FETCH FIRST m ROWS ONLY
and OFFSET n ROWS FETCH NEXT m ROWS ONLY ,
with the only wrinkle being that this clause comes
after the FOR UPDATE and other similar clauses.
|
class |
DerbyLimitHandler |
A LimitHandler for Apache Derby, which
fully supports the ANSI SQL standard syntax
FETCH FIRST m ROWS ONLY and
OFFSET n ROWS FETCH NEXT m ROWS ONLY .
|
class |
FetchLimitHandler |
A LimitHandler for databases which support the ANSI
SQL standard syntax FETCH FIRST m ROWS ONLY but not
OFFSET n ROWS .
|
class |
LegacyDB2LimitHandler |
|
class |
LegacyHSQLLimitHandler |
|
class |
LegacyOracleLimitHandler |
|
class |
LimitLimitHandler |
Limit handler for MySQL and CUBRID which support the syntax
LIMIT n and LIMIT m, n .
|
class |
LimitOffsetLimitHandler |
A LimitHandler for databases like PostgreSQL, H2,
and HSQL that support the syntax LIMIT n OFFSET m .
|
class |
NoopLimitHandler |
Handler not supporting query LIMIT clause.
|
class |
OffsetFetchLimitHandler |
A LimitHandler for databases which support the
ANSI SQL standard syntax FETCH FIRST m ROWS ONLY
and OFFSET n ROWS FETCH NEXT m ROWS ONLY .
|
class |
Oracle12LimitHandler |
A LimitHandler for databases which support the
ANSI SQL standard syntax FETCH FIRST m ROWS ONLY
and OFFSET n ROWS FETCH NEXT m ROWS ONLY .
|
class |
SQLServer2005LimitHandler |
A LimitHandler compatible with SQL Server 2005 and later
that uses top() and rownumber() .
|
class |
SQLServer2012LimitHandler |
A LimitHandler compatible with SQL Server 2012 which
introduced support for the ANSI SQL standard syntax
OFFSET m ROWS FETCH NEXT n ROWS ONLY , though this syntax
is considered part of the ORDER BY clause, and with the
wrinkle that both ORDER BY and the OFFSET clause
are required.
|
class |
TopLimitHandler |
A LimitHandler for Transact SQL and similar
databases which support the syntax SELECT TOP n .
|