vote up 5 vote down star
3

I've got an ASP.NET page that has a bunch of controls that need to be populated (e.g. dropdown lists).

I'd like to make a single trip to the db and bring back multiple recordsets instead of making a round-trip for each control.

I could bring back multiple tables in a DataSet, or I could bring back a DataReader and use '.NextResult' to put each result set into a custom business class.

Will I likely see a big enough performance advantage using the DataReader approach, or should I just use the DataSet approach?

Any examples of how you usually handle this would be appreciated.

flag

30% accept rate

8 Answers

vote up 2 vote down

If you are not interested in updating or deleting the records you fetched from database, I would suggest using DataReader. Basically DataSet internally uses multiple Datareaders, so DataReader should give you good performance advantage.

link|flag
vote up 2 vote down

Map the DataReader to intermediate objects and then bind your controls using those objects. It can be ok to use DataSets in certain circumstances, but those are few and far between when you have strong reasons for "just getting data". Whatever you do, don't pass a DataReader to your controls to bind off of (not that you said that you were considering that).

My personal preference would be to use an ORM, but if you are going to hand roll your data access, by all means I think you should prefer mapping DataReaders to objects over using DataSets. Using the .NextResult as a way to limit yourself from hitting the database multiple times is a double edged sword however so choose wisely. You will find yourself repeating yourself if you try to create procs that always grab exactly what you need using only one call to the database. If your application is only a few pages, it is probably OK, but things can get out of control quickly. Personally I'd rather have one proc per object type and then hit the database multiple times (once for each object type) in order to maximize maintainability. This is where an ORM shines because a good one will generate Sql that will get you exactly what you want with one call in most cases.

link|flag
I would think the extreme overhead of using datasets and datatables would always make them a poor choice for anything but when you feel like being lazy ;) aspnet.4guysfromrolla.com/articles/050405-1.aspx/… – SoloBold Oct 7 '08 at 22:00
I Agreed in general, which is why I usually map to intermediate objects. I'd rather have the overhead of mapping to DTOs than keeping a connection open while binding to multiple controls. Also passing DataReaders through tiers is evil, so general design guidelines are against binding to a DataReader – Daniel Auger Oct 7 '08 at 22:46
To clarify: My order of preference is 1) Bind to objects 2) Bind to DataSet/Table/Adapter 3) Bind directly to datareader (don't do it!). – Daniel Auger Oct 7 '08 at 22:53
vote up 1 vote down

In almost every situation DataReaders are the best solution for reading from a database. DataReaders are faster and require less memory than DataTables or DataSets.

Also, DataSets can often lead to situations in which the OO model is broken. It's not very object oriented to be passing around relational data/schemata instead of objects that know how to manipulate that data.

So, for extensibility, scalability, modularity, and performance reasons, always use DataReaders if you consider yourself a Real Programmerâ„¢ ;)

Check the links for facts and discussion about the two in practice and theory.

link|flag
vote up 1 vote down

If your stored proc returns multiple sets, use the DataReader.NextResult to advance to the next chunk of data. This way you can get all your data, load it to your objects, and close the reader as soon as possible. This will be the fastest method to get your data.

link|flag
vote up 1 vote down
  1. If you have more than 1000 record to bring from your DataBase.
  2. If you are not very interested with custom storing and custom paging "For GridView"
  3. If your server have a memory stress.
  4. If there is no problem to connect to your DataBase every time that page called.

Then i think the better is to use DataReader.

else

  1. If you have less than 1000 record to bring from your DataBase.
  2. If you are interested with storing and paging "For GridView"
  3. If your server haven't a memory stress.
  4. If you want to connect to your DataBase just one time and get the benefits of Caching.

Then i think the better is to use DataSet.

I hop that i'm right.

link|flag
vote up 0 vote down

I have gone to a method that uses DataReaders for all calls, I have noticed a marked performance impovement, especially in cases when I am loading drop down lists, and other simple items like that.

Personally with multiple drop downs, I typically go to pullling individual chunks of data to get it, rather than say a stored procedure that returns 5 result sets.

link|flag
vote up 0 vote down

Always put your data into classes defined for the specific usage. Don't pass DataSets or DataReaders around.

link|flag
By "always" you mean "sometimes?" – d03boy Oct 7 '08 at 21:04
Don't do it! Don't pass 'em around! shudders – SoloBold Oct 7 '08 at 22:16
vote up 0 vote down

Take a look into the TableAdapters that are available with .NET 2.0 and up. What they do is give you the strength of a strongly-typed DataTable and allow you to map a Fill method to it that will use a DataReader to load it up. Your fill method can be existing stored procedures, your own AdHoc SQL, or even let the wizard generate the AdHod or Stored Procedure for you.

You can find this by starting up a new XSD DataSet object within your project. For tables that are used for more than just lookup, you can also map insert/update/delete methods to the TableAdapter.

link|flag

Your Answer

Get an OpenID
or

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