Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Why does first reader.Read take all time in stead of command.ExecuteReader?

Re: Why does first reader.Read take all time in stead of command.ExecuteReader?

From: Ed Prochak <ed.prochak_at_magicinterface.com>
Date: 4 Feb 2005 09:57:28 -0800
Message-ID: <1107539848.658788.241630@f14g2000cwb.googlegroups.com>


I've got no answer for you, just an observation:

Debug.WriteLine("Starting first Read at " + System.DateTime.Now.TimeOfDay);

while (reader.Read())
{
 Debug.WriteLine("Finished Reading at " + System.DateTime.Now.TimeOfDay);
}

So maybe you forgot to recompile? Received on Fri Feb 04 2005 - 11:57:28 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US