vote up 0 vote down star

I've got a Winform app that will be used in the US and China. The SQL Server 2005 database is in the US, so the data access is going to be slower for the people in China. I'm deciding between using a DataReader and a Dataset for best performance. The data will immediately be loaded into business objects upon retrieval.

Question: Which performs better (DataReader/DataSet) pulling data from a database that's far away? I have read that the DataReader goes back to the database for each .Read(), so if the connection is slow to begin with, will the DataSet be a better choice here?

Thanks

flag

30% accept rate
You have not specified the database. Can you add that & add the tag for it as well? – shahkalpesh Jul 26 at 7:21

5 Answers

vote up 0 vote down

It doesn't matter which you choose since the DataSet uses the DataReader to fill. Try to avoid calling the db whereever possible, by caching results or by getting extra data. A few calls that get extra data will probably outperform alot of small pecks at the tables. Maybe a BackgroundWorker could preload some data that you know you will be using.

link|flag
vote up 0 vote down

Depends on what database it is. Bad situation if it is Access.
Depends on how much data is moved around, what is the usage style? will users from China just read or do read/write on common data? do they need to see all data?

The idea is, separate the data (if it helps the scenario) and merge it back.

link|flag
vote up 0 vote down

I think it doesn't matter since the connection is the bottleneck.

Both use the same mechanism to fetch the data (ADO.NET/Datareader).

If you can do it you might compress the query result on the server en THEN send it to the client. That would improve performance.

link|flag
How would I compress the query result on the server? – Gern Blandston Jul 26 at 20:45
Well that requires an extra layer(tier) on the server if you have SQL server. That is a LOT of work. However some db's allow for compression out of the box (like mysql) – juliandewit Jul 27 at 18:03
vote up 1 vote down

The performance of datareader vs a dataset will barely be measurable compared to the database roundtrips if you're expecting long distance/slow links.

DataSets might use more memory though, which might be a concern if you're dealing with a lot of data.

link|flag
As a point of reference, could you give a rough estimate of what a "a lot" of data is? At my job 100,000 records+ in a result set is common. – Jason D Nov 24 at 4:56
We're dealing with similar, up to 3-400k, and don't have any problems so far. – nos Nov 25 at 8:55
vote up 0 vote down

Hi,

depend of amount of data. You cannot store in memory (dataset) a too large amount.

Two ways for your problem at my mind :
- parallelisation (System.Thread)
- backgroundworkers

The first can improve performance in linq to sql cases. The second can help end users have a better experience (non bloqued UI).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.