GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Microsoft  >  Ado.NET
Go To First  |  Previous Question  |  Next Question 
 Ado.NET  |  Question 24 of 31    Print  
Difference between ado.net data set and ADO Record set

  
Total Answers and Comments: 12 Last Update: October 29, 2009     Asked by: Dhaval 
  
 Sponsored Links

 
 Best Rated Answer
Submitted by: Rajeev Kumar
 

It is a wrong answer. Data set store multiple table from database while recordset only one table at time.Dataset store date as xml formate



Above answer was rated as good by the following members:
satyanis1, drsudhak, arun_sarafmca, Ag2703, sathin
  Sorting Options  
  Page 1 of 2   « First    1    2    >     Last »  
February 21, 2007 02:34:48   #1  
Amar        

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

 
Is this answer useful? Yes | NoAnswer is useful 3   Answer is not useful 0Overall Rating: +3    
February 22, 2007 06:05:39   #2  
Rajeev Kumar        

RE: Difference between ado.net data set and ADO Record...

It is a wrong answer. Data set store multiple table from database while recordset only one table at time.Dataset store date as xml formate


 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 1Overall Rating: -N/A-    
March 08, 2007 07:30:04   #3  
Pawan Rai        

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


 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 0Overall Rating: +1    
March 16, 2007 02:06:31   #4  
Sanjay Dobhal        

RE: Difference between ado.net data set and ADO Record...
Dataset works on disconnected mode and can hold multiple table at one time but recordset works on connected mode and can hold one table at one time.
 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 0Overall Rating: +1    
March 23, 2007 06:24:56   #5  
subhrajyotsna Member Since: March 2007   Contribution: 2    

RE: Difference between ado.net data set and ADO Record...
Dataset follows disconnected architecture but recordset follows connected arcitecture.
 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 0Overall Rating: +1    
March 26, 2007 07:44:40   #6  
avkdsiva Member Since: June 2006   Contribution: 9    

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

 
Is this answer useful? Yes | No
March 29, 2007 12:27:17   #7  
sahu Member Since: December 2005   Contribution: 323    

RE: Difference between ado.net data set and ADO Record...

Hi All



Ans:

a. DataSet is Disconnected architecture while ADO Recordset is Connected.
b. Dataset catch bluk Data where recordSet retrive one record one at time


 
Is this answer useful? Yes | No
August 12, 2007 02:58:40   #8  
ramakrishnag1982 Member Since: November 2006   Contribution: 12    

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.


 
Is this answer useful? Yes | NoAnswer is useful 3   Answer is not useful 0Overall Rating: +3    
August 07, 2008 08:28:48   #9  
kann27 Member Since: August 2008   Contribution: 1    

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.

 
Is this answer useful? Yes | No
August 29, 2008 08:43:20   #10  
vijay kumar meena Member Since: August 2008   Contribution: 1    

RE: Difference between ado.net data set and ADO Record set
About DataSet

1. ASP.NET DataSet is Designed for connected access.

2. Dataset is a data structure which represents the complete table data at same
time.

3. Dataset is just a data store and manipulation is done through DataAdapters in
.NET.

4. DataSet can contain multiple tables

Retrieving data from more than one table or source does not require a JOIN.

5. XML like HTML is plaintext: Firewall friendly


About RecordSet:


1. ADO RecordSet is disconnected Architecture.

2. Recordset provides data one row at a time.

3. Recordset has the logic to update and manipulate data

4. The RecordSet is the central data container

RecordSet is one (1) table that contains all the data

Retrieving data from more than one table or source requires a database JOIN.

5. Problems marshalling through firewalls (DCOM binary)


 
Is this answer useful? Yes | NoAnswer is useful 1   Answer is not useful 0Overall Rating: +1    
  Page 1 of 2   « First    1    2    >     Last »  


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape