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

net.jrouter.paging.jdbc.dialect.MySQLDialect Maven / Gradle / Ivy

package net.jrouter.paging.jdbc.dialect;

/**
 * Dialect for MySQL.
 */
public class MySQLDialect extends Dialect {

    @Override
    public String getLimitString(String query, int offset, int limit) {
        return query + (offset > 0 ? " limit " + offset + ", " + limit : " limit " + limit);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy