}
}
public void executeSQLFile(@NotNull File pFile) {
logger.info("Attempting to execute {}", pFile);
SQLFileParser parser = new SQLFileParser();
Collection<String> c = parser.parseSQLFile(pFile.getAbsolutePath());
for (String cmd : c) {
try {
if ("Oracle".equals(databaseType)) {
cmd = StringUtils.replace(cmd, "numeric", "NUMBER");
cmd = StringUtils.replace(cmd, "varchar ", "VARCHAR2 ");