What are Differences ADO.NET DataSet vs ADO RecordSet

No.of Views1118
Bookmarked0
By RRaveen  On 09 Dec 2010
emailbookmarkadd commentsprint
 

Answer:

  1. A DataSet is designed to work disconnected mode but ADO recordset is always work connected mode.
  2. There's no concept of cursor types in a DataSet but ADO RecordSet support to cursor types
  3. You can store many data version in a DataSet, and write them to the original data source in a single operation but ADO Recordset does support to more than one version
  4. DataSet can contain multiple tables but he RecordSet only one table
  5. RecordSet is Required More time than DataSet For data retrival
  6. DataSet is always better than the RecordSet compare for best performance.
  7. Dataset makes the relationship between the table that belongs in dataset.but there are no concepts like relations in ADO Recordset
  8. DataSet support to export many data formats such as XML, HTML and more but ADO Record set not.
  9. DataSet can represent an entire relational database in memory, complete with tables, relations, and views.
 
 
About Author
 
RRaveen
Occupation-Software Engineer
Company-TGS
Member Type-Gold
Location-Singapore
Joined date-03 Jun 2009
Home Page-codegain.com
Blog Page-www.codegain.com
- B.Sc. degree in Computer Science. - 4+ years experience in Visual C#.net and VB.net - Obsessed in OOP style design and programming. - Designing and developing Network security tools. - Designing and developing a client/server application for sharing files among users in a way other than FTP protocol. - Designing and implementing GSM gateway applications and bulk messaging. - Windows Mobile and Symbian Programming - Having knowledge with ERP solutions
 
 
Other popular Interview Questions On .NET Frameworks
^ Scroll to Top