what is type dataset?

Answers were Sorted based on User's Feedback



what is type dataset?..

Answer / sandeep singh shekhawat

There are two type of Data set

When We create dataset programmely taht is weak type data set.
like DataSet ds=new DataSet();

But when We Create a DataSet using XML Schema(Xsd) that is called strong type data set that has extension .xsd
and create when we do working with LINQ to XML.

Is This Answer Correct ?    2 Yes 1 No

what is type dataset?..

Answer / radheshaym

A typed dataset is derived from the Dataset class and has an
associated XML schema, which is created at the time of
creation of the datset.
An Untyped dataset does not have any associated XML shema.In
an untyped dataset,the tables and columns are represented as
collections.Because an XML shema is not created for an
untyped datset,the structure of an untyped dataset is not
known during compilation.

Is This Answer Correct ?    1 Yes 0 No

what is type dataset?..

Answer / shiva

Dataset is collection of datatables.the collection generaly
represented as *)tables-rows-columns-constraints
DataSet ds;//declre variable
->ds.Tables["index"]
->ds.Tables.Rows[index]
->ds.Tables.Rows[rIndex].[cindex]
->ds.Tables.Columns[inedx]
->ds.tables.Constraints[index]

Is This Answer Correct ?    6 Yes 9 No

Post New Answer

More ADO.NET Interview Questions

What is DataReader Object?

0 Answers  


What are the steps in connecting to database ?

2 Answers   Microsoft,


Can we load multiple tables in a dataset?

0 Answers  


Is it possible to load multiple tables in a Dataset?

0 Answers  


What is the difference between Datareader and Dataset?

0 Answers  






What is the difference between ado.net and entity framework?

0 Answers  


What is ado.net objects?

0 Answers  


Give few examples of datareader that is used in different dataproviders.

0 Answers  


What does adodb stand for?

0 Answers  


Explain acid properties?

4 Answers  


Which ado.net object is very fast in getting data from the database?

0 Answers  


What provider ADO.net use by default?

10 Answers   Accenture, TCS,


Categories