com.dao.support.database.ISqlFileExecutor Maven / Gradle / Ivy
The newest version!
package com.dao.support.database;
/**
* sql文件执行器
* @author jianghongyan
* 2017-1-25上午11:49:50
*/
public interface ISqlFileExecutor {
/**
* 批量执行sql语句
* @param sql 可以以两种形式传递sql:
* 1.路径方式:file:com/enation/eop/eop_empty.sql
* 2.sql内容:直接传递文件内容
*/
public void execute(String sql);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy