This commit is contained in:
hxy1991 2018-10-09 20:23:33 +08:00
parent 55433f0995
commit 074d6aa77a

View File

@ -178,8 +178,9 @@ public class LocalDataSourceServiceImpl implements DataSourceService {
* @param sqlFile sql
* @throws Exception Exception
*/
public void execute(Connection conn, String sqlFile) throws Exception {
private void execute(Connection conn, String sqlFile) throws Exception {
Statement stmt = null;
try {
List<String> sqlList = loadSql(sqlFile);
stmt = conn.createStatement();
for (String sql : sqlList) {
@ -188,10 +189,13 @@ public class LocalDataSourceServiceImpl implements DataSourceService {
} catch (Exception e) {
LogUtil.defaultLog.info(e.getMessage());
}
}
} finally {
if (stmt != null) {
stmt.close();
}
}
}
public static String getAppHome() {
return appHome;