Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Why does first reader.Read take all time in stead of command.ExecuteReader?
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