Description: private String dbDiv = " // database-driven private String dbUrl = " // Data URL private String dbUser = " " // database user name private String dbPassword = " " // database user password private String testTable = " " // test connection is available test table name, the default is no test table private int initialConnections = 10 // initial size of the connection pool private int incrementalConnections = 5 //connection pool automatically increase the size of the private int maxConnections = 50 // connection pool maximum size of private long checkRelaseConnectionTime = 4* 60* 60* 1000 // release the database connection pool Connection Time 4* 60* 60* 1000 private boolean isRunning = true // thread running identity private Vector <PooledConnection> pooledConnectionVector = null // store the database connection pool connections vectors, initially stored object is null type PooledConnection
To Search:
File list (Check if you may need any files):
DBConnectionPool.java