inputStreamReader.close();
InputStreamReader inputStreamReaderInit = new InputStreamReader(
getInputStreamFromFile("init.sql"));
scriptRunner.runScript(inputStreamReaderInit);
inputStreamReaderInit.close();
scriptRunner.closeConnection();
} catch (IOException e) {
throw new RuntimeException("Error initalizing database", e);
}
}