What are the differences between Dataset and DataReader?
Answer Posted / kautilya
Dataset is in memory representation of the Database. where
you can create tables, relations between tables, add
primary key to tables and also manipulate the data
retrieved form the database. It allows us to work in
connection less environment.
Datareader is like forward only readonly cursor, which is
used to retrieve data. data manipulation is not possible
while using datareader. datareader continously keeps the
connection open.
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What is difference between View State and Hidden Field in ASP.NET?
What are the Types of chaching. How to implement caching
What is cross page posting in asp net?
What is the current version of asp.net?
What are the different web pages?
Is asp.net a language?
What does it mean your session has timed out?
What are the ways to show data grid inside a data grid for a master details type of tables? If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
What is custom attribute? How to create?
What are the options in ASP.NET to maintain state?
Where the cookie value is stored?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
How to display Alert in ASP.NET
What is bound controls
Where do we store our connection string in asp.net application?