我正在尝试执行包含存储过程的文件。我使用以下代码来执行此操作,但我一直收到错误,说我的语法错误。它似乎不喜欢涉及DELIMITER的第一行。有人有什么建议吗?
爪哇
final ResourceDatabasePopulator rdp = new ResourceDatabasePopulator();
rdp.addScript(new ClassPathResource("storedProcedures.sql"));
try {
rdp.populate(dataSource.getConnection());
} catch (SQLException e) {
e.printStackTrace();
}
异常
Caused by: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER // DROP PROCEDURE IF EXISTS `GetEvents`// CREATE PROCEDURE `GetEvents`' at line 1
答案 0 :(得分:0)
我认为我们需要查看您编写的mySQL语法以帮助查看问题。似乎编译器给你一个很好的提示。我自己更像是一个SQL服务器人,我知道如果没有SQL编译器的帮助就可以很难编写嵌入式或动态SQL来捕获错误。