public InMemoryIndex(String user, String pass, String driver,
String jdbcUrl, boolean useUTF8, String tablesFile) throws SQLException, IOException {
super(user, pass, driver, jdbcUrl, useUTF8);
SqlScript coreSchemaScript = new SqlScript(new File(tablesFile).getAbsolutePath(), this.dataSource);
coreSchemaScript.loadScript();
coreSchemaScript.execute();
}
}