Package com.alibaba.wasp.jdbcx

Examples of com.alibaba.wasp.jdbcx.JdbcDataSource


    Class.forName("com.alibaba.wasp.jdbc.Driver");

    conf = TEST_UTIL.getConfiguration();
    conf.setInt(FConstants.JDBC_POOL_MAX_CONNECTIONS, 3);

    pool = JdbcConnectionPool.create(new JdbcDataSource(conf), conf);
  }
View Full Code Here


      }
    } catch (SQLException e) {
      assertTrue(e.getMessage().indexOf("get connection timeout") != -1);
    }

    pool = JdbcConnectionPool.create(new JdbcDataSource(conf), conf);
    for (int i = 0; i < 5; i++) {
      Connection conn = pool.getConnection();
      conn.close();
    }
View Full Code Here

TOP

Related Classes of com.alibaba.wasp.jdbcx.JdbcDataSource

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.