Package com.alibaba.druid.pool

Examples of com.alibaba.druid.pool.DruidPooledConnection.disable()


    public void test_disable() throws Exception {
        Assert.assertEquals(0, dataSource.getPoolingCount());
        Assert.assertEquals(0, dataSource.getActiveCount());
       
        DruidPooledConnection conn = (DruidPooledConnection) dataSource.getConnection();
        conn.disable();
        Assert.assertEquals(true, conn.isDisable());
       
        Assert.assertEquals(1, dataSource.getActiveCount());
       
        conn.close();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.