RE: Difference between ado.net data set and ADO Record...
1. .net DataSet is Disconnected architecture while ADO Recordset is Connected. 2. We can easily return datarecords using DataSet but as far as i know it is not possible with recordset
RE: Difference between ado.net data set and ADO Record...
As far as i have studies i know that ADO(Active Data Objects) has several problems associated like unwieldness of disconnected record set. So ado.net overcome this problem and gives best support fro disconnected environment useing dataset
RE: Difference between ado.net data set and ADO Record...
Recordset is like a sigle dimentional array where a set of rows are stored. Dataset is like a Muti Dimentional Array where different sets of rows can be stored
RE: Difference between ado.net data set and ADO Record...
1) A DataSet can represent an entire relational database in memory complete with tables relations and views A Recordset can not.
2) A DataSet is designed to work without any continuing connection to the original data source; Recordset maintains the contentious connection with the original data source.
3) There's no concept of cursor types in a DataSet They are bulk loaded while Recordset work with cursors and they are loaded on demand.
4) DataSets have no current record pointer you can use For Each loops to move through the data. Recordsets have pointers to move through them.
RE: Difference between ado.net data set and ADO Record set
Dataset Disconnected architecture Dataset can view full table or partion of table view the particular column. Dataset can be connect two database example Oracle SQL. Record Set Connected Architecture.