public static void Main()
		{
			OracleCommand_Connection tc = new OracleCommand_Connection();
			Exception exp = null;
			try
			{
				tc.BeginTest("OracleCommand_Connection");
				tc.SetUp();
				tc.run();
				tc.TearDown();
			}
			catch(Exception ex){exp = ex;}
			finally	{tc.EndTest(exp);}
		}
        public static void Main()
        {
            OracleCommand_Connection tc = new OracleCommand_Connection();
            Exception exp = null;

            try
            {
                tc.BeginTest("OracleCommand_Connection");
                tc.SetUp();
                tc.run();
                tc.TearDown();
            }
            catch (Exception ex) { exp = ex; }
            finally { tc.EndTest(exp); }
        }