Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Whether to use DataReader or DataSet?

New Language Features

Whether to use DataReader or DataSet?

by  PankajBanga  Posted    (Edited  )

Answer to the question, "Whether to use the DataReader or DataSet?" really depends upon performance. If we want high performance and going to access the data once, then the DataReader is suitable. If we need access to the same data multiple times, or if you need to create a complex relationship in memory, then DataSet is appropriate.

Using DataReader can increase application performance and reduce system overheads because only one buffered row at a time is ever in memory. With DataReader we get as close to the raw data as possible and donÆt have to go through the overheads of populating a DataSet object, which sometimes may be expensive if the DataSet contains a lot of data.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top