ScriptRunner
ScriptRunner copied to clipboard
Allows to virtually use `source script.sql` with your JDBC
Is there a way to run an sql script that takes a parameter? Thanks
There are some scenarios for which **ScriptRunner throws error**: **1.Script ends with more than 1 newlines in the end** "`...` `` ``" **2.Script ends with multiple spaces** "`...` ``" **3.Last...
Fixed script last line errors, trimmedLine declaration and unsupported annotations(Java 8) mentioned in issue 11.
On line 75: `if (logFile.exists()) {` you're check if the log file exists a 2nd time. Shouldn't you be checking if `errorLogFile.exists()`?
hello and thanks for your perfect java class. I have an application which creates a random name database then create a user and in an exact database(the other one). I...