I have a stored procedure that works fine in the MySql workbench but when it is run by Spring, using the ResourceDatabasePopulator, it fails with a syntax error. Reading around there are similar issues where the delimiter should be set in the script, I have followed these but the same error persists.
This is the SP
DELIMITER $$
CREATE PROCEDURE userAttributesOrder()
READS SQL DATA
BEGIN
DECLARE done INT DEFAULT FALSE;
DECLARE i INT DEFAULT 0;
DECLARE attCount INT DEFAULT 0;
DECLARE cod VARCHAR(64) DEFAULT NULL;
DECLARE curs CURSOR FOR SELECT CODE FROM PA_ATTR_TYPE ORDER BY NAME ASC;
DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = TRUE;
SET i = 0;
OPEN curs;
read_loop: LOOP
FETCH curs INTO cod;
IF done THEN
LEAVE read_loop;
END IF;
INSERT INTO LAYOUT(ELEMENT_TYPE, ELEMENT_CODE, LAYOUT_ORDER) VALUES ('PA_ATTRIB', cod, i);
SET i = i + 1;
END LOOP;
CLOSE curs;
END$$
DELIMITER ;
And this is the exception
org.springframework.jdbc.datasource.init.ScriptStatementFailedException: Failed to execute SQL script statement #4 of resource class path resource [database/updates/23-update.sql]: DELIMITER $$ CREATE PROCEDURE user
AttributesOrder() READS SQL DATA BEGIN DECLARE done INT DEFAULT FALSE; nested exception is com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corre
sponds to your MySQL server version for the right syntax to use near 'DELIMITER $$ CREATE PROCEDURE userAttributesOrder() READS SQL DATA BEGIN DECLARE' at line 1
at org.springframework.jdbc.datasource.init.ScriptUtils.executeSqlScript(ScriptUtils.java:472) ~[spring-jdbc-4.1.6.RELEASE.jar:4.1.6.RELEASE]
Does anyone have a clue how to fix this? It is just Spring which I find frustrating as using plain Java I would not have the issue.
UPDATE Spring code included As requested here is the Spring code I have inherited that runs the scripts.
DataSourceInitializer initializer = new DataSourceInitializer();
initializer.setDataSource(dataSource);
ResourceDatabasePopulator databasePopulator = new ResourceDatabasePopulator();
for (String script : orderedScripts) {
databasePopulator.addScript(new ClassPathResource(script));
}
initializer.setDatabasePopulator(databasePopulator);
initializer.afterPropertiesSet();