com.wizarius.orm.database.actions.IDBDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wizarius-orm Show documentation
Show all versions of wizarius-orm Show documentation
Java orm for Postgres or Mysql with migration system and connection pool
package com.wizarius.orm.database.actions;
import com.wizarius.orm.database.handlers.ReadableHandlers;
import com.wizarius.orm.database.handlers.WritableHandlers;
/**
* @author Vladyslav Shyshkin
* Date: 23.03.2020
* Time: 21:48
*/
public interface IDBDialect {
/**
* Build limit query
*
* @param limit limit
* @param offset limit offset
* @return limit string
*/
String buildLimitQuery(long limit, long offset);
/**
* Return writable handlers
*
* @return writable handlers
*/
WritableHandlers getWritableHandlers();
/**
* Returns readable handlers
*
* @return readable handlers
*/
ReadableHandlers getReadableHandlers();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy