Package org.idevlab.rjc.ds

Examples of org.idevlab.rjc.ds.PoolableDataSource


  }


  public void afterPropertiesSet() {
    if (usePool) {
      PoolableDataSource pool = new PoolableDataSource();
      pool.setHost(hostName);
      pool.setPort(port);
      pool.setPassword(password);
      pool.setTimeout(timeout);

      pool.init();

      dataSource = pool;

    }
    else {
View Full Code Here

TOP

Related Classes of org.idevlab.rjc.ds.PoolableDataSource

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.