All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.liuanxin.page.dialect.impl.SQLServer2000Dialect Maven / Gradle / Ivy

The newest version!
package com.github.liuanxin.page.dialect.impl;

import com.github.liuanxin.page.dialect.Dialect;
import com.github.liuanxin.page.model.PageBounds;

/**
 * @author https://github.com/liuanxin
 */
public class SQLServer2000Dialect extends Dialect {

    public SQLServer2000Dialect(String sql, PageBounds pageBounds) {
        super(sql, pageBounds);
    }

    @Override
    protected String getLimitString(String sql, String offsetName, int offset, String limitName, int limit) {
        super.addPageParam(limitName, limit);
        return SqlServerUtil.topPage(sql);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy