What is dataset and tell about its features. What are
equivalent methods of previous, next etc. Of ADO in ADO.NET ?
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 |
Explain how to pass multiple tables in datasets simultaneously?
What is the difference between OLEDB Provider and SqlClient?
What is ado connection?
I want to ask u that if i add radio button in ado.net form,and how radion button data insert in SQL2005 Database...
ADO.NET is Disconnected Architecture. DataReader is connected Architecture, but DataReader is a part of ADO.NET. How is it possible?
Describe the disconnected architecture of ADO.NET’s data access model.
What are the drawbacks of using ado.net?
What are all the different methods under sqlcommand?
What are the steps in connecting to database ?
Explain how to copy the contents from one table to another table and how to delete the source table in ado.net?
What are the features of ado.net?
What is commandbuilder in ado.net?