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

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