Hello everyone,
I'm working in a project, and in this project I need to (sometimes) make a "migration", but all this SQL statments that given to me are files .sql. I've been looking in the internet, and I found the mybatis (ScriptRunner).
Works well in some files, but in files who contains ; in middle of the string sentence, the ScriptRunner fails to "migrate". Yeah, yeah, I know, the semicolon triggers the ScriptRunner parser and recognize the ; as end of line.
Exists another way to ignore the semicolon of the middle of string? (Changing the delimiter is out of question, because the file that given to me, is a company pattern of sql files);
Thanks :)