Can you explain the difference between an ADO.NET Dataset
and an ADO Recordset?
Answer Posted / ganesh
Valid answers are:
· 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 ? | 1 Yes | 0 No |
Post New Answer View All Answers
How to Separate background image and front image from original picture....
What is the viewstate in asp.net?
Is web config mandatory?
Write some code using interfaces, virtual methods, and an abstract class`
Explain the advantages of passport authentication.
What is the default Orientation property in a Menu control?
How can we register exception filter globally?
What are the 3 levels at which content pages can be attached to Master Page?
What is Web API Routing?
What is aspect-oriented programming?
Explain what does mvc represent in asp.net? : asp.net mvc
What permissions do asp.net applications posses by default?
What threading model used in asp and asp.net?
How do you implement sql caching in asp.net?
Explain how can we access static variable?