Answer Posted / dilip singh
A Dataset is a in memory representation of a collection of
Database objects including tables of a relational database
scheme. The dataset contains a collection of Tables,
Relations, constraints etc.,
It can be used for manipulating the data remotely and
finally updating the database with the modified data. This
way it enables disconnected means of working with data. This
improves performance
in terms of reducing the number of times a database is
accessed for data manipulations.
The dataset contains all the objects as a Collection of
objects. For example it contains the Database Tables as
DataTable objects. The data from the database is filled into
the dataset by using the DataAdapter.
All the related classes like DataSet, DataAdapter,
DataTable, DataRow etc are available inside the System.Data
namespace. This namespace can be used as follows:
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
How can we pass info between 2 asp.net pages?
How does asp net store session ids by default?
What is a SESSION and APPLICATION object?
Mention the execution process for managed code?
What is the use of response redirect in asp.net?
Is react a template engine?
Why cyclomatic complexity is important?
What are session objects?
Where would you use an ihttpmodule, and what are the limitations if any?
What are the different properties of server control that exists?
How to communicate via Remote proxy with Client? a)MarshalByRef b)Marshal by Value or Any thing else?
A Web Service Can Only Be Written In .net. Is it True??
Whats the difference between abstract factory pattern and factory pattern?
Which is the parent class of the ASP.NET server control?
What’s the use of “GLOBAL.ASAX” file?