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
What is authorization in asp.net?
Explain swagger components.
Explain the significance of routing? : asp.net mvc
is there any third party tools are using in .net technologies? what are there ? give me the brief introduction?
Explain how can we access static variable?
Can we have multiple web config files for an asp.net application?
What is a response cookie?
What does asax stand for?
What is difference between singleton and single call?
What is the significance of attaching a profile while creating a user?
To add a hyperlink column to the DataGrid which tag is used ?
What are the main requirements for caching?
Is asp.net a programming language?
What are the different types of events are occured when a client requests an ASP.NET page from IIS server?
Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?