I use hsqldb to run my unit tests that need a database access.
For the moment, when I want to create a table for a specific test, I have the following c
I had the same problem. I ended up splitting the text file by ; and executing each statement separately. It was OK because we had no inserts therefore no semicolons inside statements. I haven't found an easy way to run an SQL script at that time