What is dataset and tell about its features. What are
equivalent methods of previous, next etc. Of ADO in ADO.NET ?



What is dataset and tell about its features. What are equivalent methods of previous, next etc. Of ..

Answer / vaidyanathan r.

Dataset is a collection of Datatables along with their
relations. Dataset is the copy of part/full of the actual
data base stored in the application during execution for
data manipulations.

And there is no equivalent methods to previous and next
methods of ADO as each table is treated as a seperate
objects inside the Dataset. However a particular record can
be retrieved by the "Rows" property of the Data Table.

Eg: DataRow dr = DataSet1.Tables[<TableIndex>].Rows
[<RowIndex>]

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ADO.NET Interview Questions

Define data access layer?

0 Answers  


What is a serialized object?

0 Answers  


What are the benefits of using of ADO.NET in .NET 4.0?

0 Answers  


How to work with disconnected data - the dataset and sqldataadapter?

0 Answers  


How to add an aggregate column?

0 Answers  






What is namespace in ado.net?

0 Answers  


What are disadvantages of microsoft-provided data provider classes in ado.net?

0 Answers  


What are the disadvantages of using datalist?

0 Answers  


what is ado.net

6 Answers   Karrox, SunGard,


What is meant by executenonquery?

0 Answers  


Why is it important to close an ado.net application?

0 Answers  


Explain how to copy the contents from one table to another table and how to delete the source table in ado.net?

0 Answers  


Categories