mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
52 lines
1.1 KiB
Java
52 lines
1.1 KiB
Java
package com.avaje.ebeaninternal.server.querydefn;
|
|
|
|
import com.avaje.ebean.config.dbplatform.DatabasePlatform;
|
|
import com.avaje.ebean.config.dbplatform.SqlLimitRequest;
|
|
import com.avaje.ebeaninternal.api.SpiQuery;
|
|
|
|
public class OrmQueryLimitRequest implements SqlLimitRequest {
|
|
|
|
private final SpiQuery<?> ormQuery;
|
|
|
|
private final DatabasePlatform dbPlatform;
|
|
|
|
private final String sql;
|
|
|
|
private final String sqlOrderBy;
|
|
|
|
public OrmQueryLimitRequest(String sql, String sqlOrderBy, SpiQuery<?> ormQuery, DatabasePlatform dbPlatform) {
|
|
this.sql = sql;
|
|
this.sqlOrderBy = sqlOrderBy;
|
|
this.ormQuery = ormQuery;
|
|
this.dbPlatform = dbPlatform;
|
|
}
|
|
|
|
public String getDbOrderBy() {
|
|
return sqlOrderBy;
|
|
}
|
|
|
|
public String getDbSql() {
|
|
return sql;
|
|
}
|
|
|
|
public int getFirstRow() {
|
|
return ormQuery.getFirstRow();
|
|
}
|
|
|
|
public int getMaxRows() {
|
|
return ormQuery.getMaxRows();
|
|
}
|
|
|
|
public boolean isDistinct() {
|
|
return ormQuery.isDistinctQuery();
|
|
}
|
|
|
|
public SpiQuery<?> getOrmQuery() {
|
|
return ormQuery;
|
|
}
|
|
|
|
public DatabasePlatform getDbPlatform() {
|
|
return dbPlatform;
|
|
}
|
|
}
|