ADO.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1806 Page Views: 

What do you mean by DataSet object?



Posted By: Avi Date: 12 September 2009 07:26:46 AM
 Answer:

DataSet object is an in-memory, relational data representation. The DataSet object contains a collection of DataTable objects and a collection of DataRelation objects.


Posted By: eTechPlanet


Date: 12 September 2009 07:26:46 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 7AJivb
Related Questions
ADO.Net : What is the use of command objects?

What is the use of command objects?

This object represents an SQL statement that is executed while connected to the database. Following ....
Category: ADO.Net Date: 10/15/2009 5:03:07 AM
ADO.Net : What are the various methods provided by the dataset object to generate XML?

What are the various methods provided by the dataset object to generate XML?

DataSet object provides following methods to generate XML: 1) ReadXML Reads a XML schema and data i....
Category: ADO.Net Date: 10/8/2009 3:49:37 AM
ADO.Net : Explain the various steps involved to fill a dataset?

Explain the various steps involved to fill a dataset?

Step-1: Open the database connection by creating a Connection object. We can load the connection str....
Category: ADO.Net Date: 10/8/2009 3:16:53 AM
ADO.Net : What is the difference between DataSet.Clone() and DataSet.Copy() methods?

What is the difference between DataSet.Clone() and DataSet.Copy() methods?

DataSet.Clone(): It only copies structure, does not copy data. DataSet.Copy(): Copies both structur....
Category: ADO.Net Date: 10/6/2009 6:37:58 AM
ADO.Net : How can we force the Connection object to close after DataReader object is closed?

How can we force the Connection object to close after DataReader object is closed?

We use ExecuteReader method of Command object to get the DataReader object. This ExecuteReader metho....
Category: ADO.Net Date: 10/6/2009 6:34:42 AM