com.github.chengyuxing.sql.page.impl.Db2PageHelper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbit-sql Show documentation
Show all versions of rabbit-sql Show documentation
Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql
file.
package com.github.chengyuxing.sql.page.impl;
public class Db2PageHelper extends OraclePageHelper {
@Override
public String pagedSql(String sql) {
return "select * from (select rownumber() over() as " + ROW_NUM_KEY + ", t.* from (" + sql + ") as t) where " + ROW_NUM_KEY + " between " + start() + " and " + end();
}
}