Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is dataset and uses of dataset ?

Answers were Sorted based on User's Feedback



What is dataset and uses of dataset ?..

Answer / k.nagavani

DATASET:
The dataset is a in-memory representation of data.
DataSet is made up of a collection of DataTable objects.
It can be considered as a local copy of the relevant
portions of the database.
The data is persisted in memory and the data in it can be
manipulated and updated independent of the database. When
the use of this dataset is finished, changes can made back
to the central database for updating.
The data in dataset can be loaded from any valid
datasources like Microsoft SQL Server database, an Oracle
database or a Microsoft Access database.
USES:
1. You normally use datasets to hold results of database
queries, but you can also create them on the fly and
populate them programmatically.
2. The DataSet object has characteristics that make it
suitable for persisting application settings: It can hold
hierarchical data in the Tables collection, and you can use
the WriteXml() method to save the entire dataset into an
XML file with a simple call:

ds.WriteXml(strFileName,
XmlWriteMode.WriteSchema);
3. We can seperate data layer from presentation layer by
using class or dataset in .net 2.0.
4. The DataSet in .Net rocks, it provides so much
functionality for free, that it makes it the prefered data
transport mechanism between the presentation layer and the
buisiness layer, when dealing with a pure .Net technology
stack then DataSet's are the way to go.
5. DataSet has some powerful XML-related capabilities. For
example, you can serialize a DataSet into XML through its
WriteXml() method; conversely, you can populate a DataSet
from a properly formatted XML stream using the DataSet's
ReadXml() method.

Is This Answer Correct ?    21 Yes 0 No

What is dataset and uses of dataset ?..

Answer / nagaraj

1. datasert is connection less in memory representation of
the data xml represention.
2. once the data load into dataset their is no need to
maintain the live connection.
3.once dataset is collection of any no.of datatable
objects.the information of these table may be taken from
diff datasource.
4.the dataset updatable
5.the data set will represent the information inthe xml
format internally

Is This Answer Correct ?    9 Yes 1 No

What is dataset and uses of dataset ?..

Answer / ponvanaraja

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.

Is This Answer Correct ?    7 Yes 1 No

What is dataset and uses of dataset ?..

Answer / sathish

dataset solved a lot of handling huge amount of data.The
dataset when pointed to stored procedures can be able to
load data of many tables and can be accessed at any instant
any record.

Is This Answer Correct ?    5 Yes 2 No

What is dataset and uses of dataset ?..

Answer / kavitha

dataset are tow types
typed dataset typeddataset and untypeddataset
typedataset is xml format
untypeddataset is textformat
dataset as any modifications create insert delete insert
update & edit
dataset like as database

Is This Answer Correct ?    3 Yes 0 No

What is dataset and uses of dataset ?..

Answer / supriya

Dataset is a memory represtation of data.it is collection
of datatables object.it can manipulated and updated
independent of the database.it is normally hold the result
of datasets.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What is deference between asp.net, vb.net, c# & j#

2 Answers  


What?s the difference between Response.Write() andResponse.Output.Write()?

2 Answers  


What is the full form of asp.net?

0 Answers  


What are the advantages and limitations of query string?

0 Answers  


which is best possible way to add data source to data grid when the data is huge(10 lack recored)how to edit a perticular row

3 Answers   Airtel, Aviva,


What is difference b/w Generic List and Arraylist, Generic List Vs HashTable, Generic List Vs No Generic? Pls Explain with example.

2 Answers   Polaris, Syntel,


Name the namespace which is used by ado.net?

0 Answers  


how to create bin folder in asp.net2.0

8 Answers  


Define the types of configuration files.

0 Answers  


How do you create master pages in asp.net?

2 Answers   Wipro,


What is Dynamic Web and discuss its usage with the help of real life examples?

0 Answers   Huawei,


Which template must you provide, in order to display data in a Repeater control?

1 Answers  


Categories