public HSQLDBManager(String configFile) {
try {
HSQLParser parser = new HSQLParser(configFile);
HSQLBean bean = parser.getHQLBean();
this.bean = bean;
this.service = new HSQLExtendRepositoryService(bean);
} catch (SAXException e) {
throw RepositoryException.throwIt(e);
} catch (IOException e) {
throw RepositoryException.throwIt(e);
}