public static void Main()
		{
			OleDbConnection_ConnectionString tc = new OleDbConnection_ConnectionString();
			Exception exp = null;
			try
			{
				tc.BeginTest("OleDbConnection_ConnectionString");

				tc.run();
			}
			catch(Exception ex){exp = ex;}
			finally	{tc.EndTest(exp);}
		}
        public static void Main()
        {
            OleDbConnection_ConnectionString tc = new OleDbConnection_ConnectionString();
            Exception exp = null;

            try
            {
                tc.BeginTest("OleDbConnection_ConnectionString");

                tc.run();
            }
            catch (Exception ex) { exp = ex; }
            finally { tc.EndTest(exp); }
        }