Package com.bleujin.framework.db.procedure

Examples of com.bleujin.framework.db.procedure.HSQLExtendRepositoryService


  private final RepositoryService service;
  private final HSQLBean bean;

  public HSQLDBManager(HSQLBean bean) {
    this.bean = bean;
    this.service = new HSQLExtendRepositoryService(bean);
  }
View Full Code Here


  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);
    }
View Full Code Here

TOP

Related Classes of com.bleujin.framework.db.procedure.HSQLExtendRepositoryService

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.