⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 statstest.java

📁 c3p0数据库连接池实现源码
💻 JAVA
字号:
/* * Distributed as part of c3p0 v.0.9.1-pre6 * * Copyright (C) 2005 Machinery For Change, Inc. * * Author: Steve Waldman <swaldman@mchange.com> * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 2.1, as  * published by the Free Software Foundation. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this software; see the file LICENSE.  If not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, * Boston, MA 02111-1307, USA. */package com.mchange.v2.c3p0.test;import java.util.*;import java.sql.*;import javax.sql.*;import com.mchange.v2.c3p0.*;import com.mchange.v1.db.sql.*;public final class StatsTest{    static void display( ComboPooledDataSource cpds ) throws Exception    {	System.err.println("numConnections: " + cpds.getNumConnections());	System.err.println("numBusyConnections: " + cpds.getNumBusyConnections());	System.err.println("numIdleConnections: " + cpds.getNumIdleConnections());	System.err.println("numUnclosedOrphanedConnections: " + cpds.getNumUnclosedOrphanedConnections());	System.err.println();    }    public static void main(String[] argv)    {	try	    {		ComboPooledDataSource cpds = new ComboPooledDataSource();		cpds.setJdbcUrl( argv[0] );		cpds.setUser( argv[1] );		cpds.setPassword( argv[2] );		cpds.setMinPoolSize(5);		cpds.setAcquireIncrement(5);		cpds.setMaxPoolSize(20);		System.err.println("Initial...");		display( cpds );		Thread.sleep(2000); 		HashSet hs = new HashSet(); 		for (int i = 0; i < 20; ++i) 		    {			Connection c = cpds.getConnection(); 			hs.add( c );			System.err.println( "Adding (" + (i + 1) + ") " + c ); 			display( cpds );			Thread.sleep(1000);// 			if (i == 9)// 			    {//  				//System.err.println("hardReset()ing");//  				//cpds.hardReset();// 				System.err.println("softReset()ing");// 				cpds.softReset();// 			    } 		    }				int count = 0;		for (Iterator ii = hs.iterator(); ii.hasNext(); )		    {			Connection c = ((Connection) ii.next());			System.err.println("Removing " + ++count);			ii.remove();			try { c.getMetaData().getTables( null, null, "PROBABLYNOT", new String[] {"TABLE"} ); }			catch (Exception e)			    { 				System.err.println( e ); 				System.err.println();				continue;			    }			finally			    { c.close(); }			display( cpds );		    }		System.err.println("Closing data source, \"forcing\" garbage collection, and sleeping for 5 seconds...");		cpds.close();		System.gc();		System.err.println("Main Thread: Sleeping for five seconds!");		Thread.sleep(5000);// 		System.gc();// 		Thread.sleep(5000);		System.err.println("Bye!");	    }	catch( Exception e )	    { e.printStackTrace(); }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -