Package com.bleujin.framework.db.manager

Examples of com.bleujin.framework.db.manager.PoolHelper


    try {
      Class.forName(getDriverName());
    } catch (ClassNotFoundException ex) {
      throw new SQLException("Driver Class Not Found", ex.toString());
    }
    pHelper = new PoolHelper(getJdbcURL(), getUserId(), getUserPwd(), maxLimit);
  }
View Full Code Here


  private PoolHelper pHelper ;
 
  final static MySQLPoolDBManager TEST = new MySQLPoolDBManager("jdbc:mysql://localhost/test", "bleu", "redf") ;
  public MySQLPoolDBManager(String jdbcURL, String user, String passwd) {
    super(jdbcURL, user, passwd);
    this.pHelper = new PoolHelper(getJdbcURL(), getUserId(), getUserPwd(), 40) ;
  }
View Full Code Here

    try {
      Class.forName(getDriverName());
    } catch (ClassNotFoundException ex) {
      throw new SQLException("Driver Class Not Found", ex.toString());
    }
    pHelper = new PoolHelper(getJdbcURL(), getUserId(), getUserPwd(), maxLimit) ;
    pHelper.initPoolConnection();
  }
View Full Code Here

TOP

Related Classes of com.bleujin.framework.db.manager.PoolHelper

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.