Difference between datareader and dataset ?
Answer Posted / jagadeesh naidu
Datareader is used for readonly-forward only data.We can't
update the database by datareader.We can store more than
one resultset in the datareader so we can't create the
relations between the tables.There is no record pointer to
read the data in the datareader.We can read the datat from
the datareader by using reader method.
Dataset can contain more than one table and we can create
relationships among those tables.we can read the data by
for each loop.Dataset can contain data from different
datasources like oracle,sqlserver,access etc.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why is the standalone environment only useful during the development process?
What is Razor View Engine
What is the use of session?
What is http protocol and how it works?
Differentiate the session object and application object?
What are the various types of validation controls provided by asp.net?
What is the difference between a cookie and a pixel?
Where is the view state data stored?
What is the procedure to handle the process request using mhpm events fired? : asp.net mvc
What is enableviewstatemac in asp net?
What are the various types of cookies in asp.net?
What is csrf attack in asp.net?
Is LINQ performance wise better or using sqlcommand?
What are session cookies?
Why is global asax is used for?