Package com.bleujin.framework.db

Examples of com.bleujin.framework.db.DBController


   *  �� �̻��� ���� ����ð��� ����ϴ� �������� ������  ����ϴ� ExtraServant�� ������� �ִ�.
   * 
   */

  public void testServantChain() throws Exception {
    DBController newDc = new DBController("newDC", dc.getDBManager()) ;
    newDc.addServant(new StdOutServant(StdOutServant.All)) ; // ��� IQueryable�� ȭ�鿡 ����Ʈ�ϴ� Servant�� �߰��Ѵ�.
    newDc.addServant(new StdOutServant(StdOutServant.All)) ; // �Ѱ� �� �߰��Ѵ�.
    newDc.initSelf() ;
   
    newDc.getRows("select 1 from copy_sample") ;
    newDc.destroySelf() ;
  }
View Full Code Here


  private HttpExceptionManager emanager ;
 

  public Env(Configuration config) throws InvalidSetupException {
    try {
      this.dc = new DBController(config.getChild("database-controller"));
      this.dc.initSelf() ;
     
      defaultLocale = new Locale(config.getChild("default-locale").getValue());
     
      emanager = HttpExceptionManager.getExceptionManager("Common HTTP Exception Manager");
View Full Code Here

TOP

Related Classes of com.bleujin.framework.db.DBController

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.