public interface SqlLimitRequest
The request object for the query that can have sql limiting applied to it
 (such as a LIMIT OFFSET clause).
- 
Method Summary
- 
Method Details- 
isDistinctboolean isDistinct()Return true if the query uses distinct.
- 
getFirstRowint getFirstRow()Return the first row value.
- 
getMaxRowsint getMaxRows()Return the max rows for this query.
- 
getDbSqlString getDbSql()Return the sql query.
- 
getDbOrderByString getDbOrderBy()Return the orderBy clause of the sql query.
- 
getOrmQueryQuery<?> getOrmQuery()return the query
- 
getDbPlatformDatabasePlatform getDbPlatform()return the database platform
 
-