What is dataset and tell about its features. What are
equivalent methods of previous, next etc. Of ADO in ADO.NET ?
Answer Posted / 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 View All Answers
What is ado.net connection?
What are the main differences between classic ado and ado.net?
Define Execute Reader?
Explain the basic use of "dataview" and explain its methods.
How can we perform transactions in .net?
What property must be set and what method must be called in your code to bind the data from some data source to the Repeater control?
What is the role of data provider in ado.net?
What is ado and rdo?
What is the functionality of data provider in ado.net?
What is ado.net objects?
What is difference between connected and disconnected architecture in ado.net?
What is difference in record set and dataset?
How do you connect to sql server database without using sqlclient?
What are datareaders?
What is ado.net and its architecture?