Difference between Dataset and DataReader ?
Answer Posted / 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 |
Post New Answer View All Answers
Is asp.net still used?
explain code with multi inhertance
How do you create a master page?
What is autopost?
Explain parts of assembly?
What are the differences between the response.write() and response.output.write()?
Is post back in asp.net?
What is use of <% %> in asp.net?
How can you implement encapsulation in asp.net?
how can we create wcf in asp.net and how can we cll that in to asp.net application?plsss tel me each step clearly
What are the modes of updation in an updatepanel? What are triggers of an updatepanel?
What is State Management in .Net and how many ways are there to maintain a state in .Net? What is view state?
Why does my asp.net file have multiple tag with runat=server?
What are the advantages and disadvantages of Using Cookies?
What is asp.net master page?