G
Guest
Hi,
I have a question regarding OleDbCommand.ExecuteReader.
From what I understand, ExecuteReader fetches rows on demand, on a row by
row basis.
What are the implications of using this method when your database is
accessed over the web? Won't it be terrible slow? The reason I ask this is
because it seems that each time I call OleDbDataReader.Read(), an HTTP
request is sent to the server and one row of data is returned.
Is there a better way of receiving user-defined chunks of data from
databases? I would rather not use OleDbDataAdapter as it is too slow.
Thanks.
I have a question regarding OleDbCommand.ExecuteReader.
From what I understand, ExecuteReader fetches rows on demand, on a row by
row basis.
What are the implications of using this method when your database is
accessed over the web? Won't it be terrible slow? The reason I ask this is
because it seems that each time I call OleDbDataReader.Read(), an HTTP
request is sent to the server and one row of data is returned.
Is there a better way of receiving user-defined chunks of data from
databases? I would rather not use OleDbDataAdapter as it is too slow.
Thanks.