Difference between Dataset and DataReader ?
Answers were Sorted based on User's Feedback
Answer / umamahadevan
DataSet
Data set can be said as a temporary data base which works
on disconnected architecture which stores schema and data
in application memory area..It fetches all data at a time..
DML is entertained here
DataReader
Datareader is like a forward only recordset. It fetches one
row at a time.DataReader is readonly so we cannot do any
transaction on them. DataReader will be the best choice
where we need to show the data to the user which requires
no transaction ie reports. Due to DataReader is forward
only we cannot fetch the data randomly. .NET Dataproviders
optimizes the datareaders to handle the huge amount of data.
Is This Answer Correct ? | 20 Yes | 3 No |
Answer / satish
The DataSet consists of a collection of DataTable objects
that you can relate to each other with DataRelation
objects. A DataSet can read and write data and schema as
XML documents..The DataReader object is the ADO.NET
counterpart of the read-only, forward-only default ADO
cursor
Is This Answer Correct ? | 17 Yes | 3 No |
Answer / payal
1)Data set is work in diconnected architure.
Datareader is work in connected architure.
2)according to speed datareader is faster than dataset.
3)In case of dataset it contain all
tables,relations,constriants which is not in datareader so
that speed of datareader is fast.
4)Data set can persist records where datareader is not.
5)we can save ,update data in dataset and save using
acceptchanges method where datareader cannot.
6)datareader is forward only.where dataset is not.
Is This Answer Correct ? | 18 Yes | 8 No |
Answer / kamlesh sharma
The DataSet consists of DataTable objects
that you can relate to each other with DataRelation
objects (and dataset is disconnected data model)
The datareader is connected model(connection must be open
while operation performs)
and it is state forward read only counter part of ADO.net
Is This Answer Correct ? | 8 Yes | 3 No |
Can we add code files of different languages in app_code folder?
About the Usage of htmlencode and urlencode ?
In which event of the page viewstate is available?
Explain the differences between Server-side and Client-side code?
web user and custom conrols
what is purpose of xml control in standard controls of asp.net
1.what is the application pool. 2.what is the HttpModile and Http Handler. 3.C# 3.0 Features ? 4.Anonoymous Type,methopd and claas in 3.0? 5.difference between statsic and const ? 6.session vs application 7.state management clint side and server side ? 8.Genric list 9.c# 3.0 vs 3.5
Which is faster viewdata or viewbag?
What is the difference between sealed vs static class?
what is impersonation in ASP.NET?
7 Answers Accenture, Merrill Lynch, Wipro,
what if we delete web.config or machine.config? will a website work if we delete webconfig....or if we delete machine config?
How can we make sure that Web API returns JSON data only?