Package com.alibaba.druid.filter.stat

Examples of com.alibaba.druid.filter.stat.StatFilter.connection_connect()


            }
        };

        Exception error = null;
        try {
            filter.connection_connect(chain, new Properties());
        } catch (SQLException ex) {
            error = ex;
        }
        Assert.assertNotNull(error);
        Assert.assertEquals(1, dataSourceStat.getConnectionStat().getConnectErrorCount());
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.