/******************************************************/
Sample of how to use the connection pool.
/******************************************************/
import java.awt.*;
import java.sql.*;

public class test
{
	:
	:
	:
		try {
		      new pool.JDCConnectionDriver("oracle.jdbc.driver.OracleDriver","jdbc:oracle:thin:@131.14.1.1:1521:database",
				   "username", "password");
	
		} catch(Exception e) {
		}

		try {
	                con = DriverManager.getConnection("jdbc:jdc:jdcpool");
			stmt = con.createStatement();							
	:
	:
	:
} // End of Class test