* Run a script on a Database
*/
public final void runScript(String script) {
try {
Connection conn = this.makeConnection();
ScriptRunner runner = new ScriptRunner(conn, true, true);
File scriptFile= new File(script);
runner.runScript(scriptFile);
conn.close();
} catch (SQLException ex) {
throw new RuntimeException(String.format("Unexpected error when trying to run: %", script), ex);
} catch (IOException ex) {
throw new RuntimeException(String.format("Unexpected error when trying to open: %", script), ex);