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

Explain how to pass multiple tables in datasets simultaneously?

0 Answers  


What is the difference between OLEDB Provider and SqlClient?

0 Answers  


What is ado connection?

0 Answers  


I want to ask u that if i add radio button in ado.net form,and how radion button data insert in SQL2005 Database...

6 Answers  


ADO.NET is Disconnected Architecture. DataReader is connected Architecture, but DataReader is a part of ADO.NET. How is it possible?

3 Answers   Zensar,


Describe the disconnected architecture of ADO.NET’s data access model.

0 Answers  


What are the drawbacks of using ado.net?

0 Answers  


What are all the different methods under sqlcommand?

0 Answers  


What are the steps in connecting to database ?

2 Answers   Microsoft,


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

0 Answers  


What are the features of ado.net?

0 Answers  


What is commandbuilder in ado.net?

0 Answers  


Categories