Can you explain the difference between an ADO.NET Dataset
and an ADO Recordset?
Answer Posted / ramgopal reddy
? A DataSet can represent an entire relational database in
memory, complete with tables, relations, and views.
? A DataSet is designed to work without any continuing
connection to the original data source.
? Data in a DataSet is bulk-loaded, rather than being loaded
on demand.
? There's no concept of cursor types in a DataSet.
? DataSets have no current record pointer You can use For
Each loops to move through the data.
? You can store many edits in a DataSet, and write them to
the original data source in a single operation.
? Though the DataSet is universal, other objects in ADO.NET
come in different versions for different data sources.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can you apply a theme to your asp.net application?
What’s the difference between response .redirect and server.transfer?
What is a reflection?
How Session use Cookies in State Management?
What is a postback url?
What will happen if the server confugration file and the application confugration file have different values for sassion state ASP.NET?
What are the differences between the response.write() and response.output.write()?
What is odata in web api?
What is the difference between custom controls and user controls?
What is rending process in ASP.NET?
When does a session actually start?
To get the values in two different controls to match which control you use it?
Describe the Server Control Events of ASP.NET?
What is the difference between login controls and forms authentication?
Explain serialization and deserialization?