What is the difference between an ADO.NET Dataset and an ADO Recordset?
2392
27-Jan-2014
Sumit Kesarwani
27-Jan-2014Dataset can fetch source data from many tables at a time, for Recordset you can achieve the same only using the SQL joins.
A DataSet can represent an entire relational database in memory, complete with tables, relations, and views, A Recordset can not.
A DataSet is designed to work without any continues connection to the original data source; Recordset maintains continues connection with the original data source.
DataSets have no current record pointer, you can use For Each loops to move through the data. Recordsets have pointers to move through them.