com.ecfront.easybi.dbutils.inner.dialect.Dialect Maven / Gradle / Ivy
package com.ecfront.easybi.dbutils.inner.dialect;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
public interface Dialect {
String paging(String sql, long pageNumber, long pageSize) throws SQLException;
String count(String sql) throws SQLException;
String getTableInfo(String tableName) throws SQLException;
String createTableIfNotExist(String tableName, String tableDesc, Map fields, Map fieldsDesc, List indexFields, List uniqueFields, String pkField)throws SQLException;
}