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
How many major types of connection objects in ADO.NET?
What is untyped dataset?
What does sqldatareader return?
Can we connect two dataadapters to same data source using single connection at same time?
What is execute reader in ado.net?
What are the advantages and drawbacks of using ado.net?
What is microsoft ole db provider for sql server?
What is ole2 format?
Define Execute Reader?
Is ado.net an orm?
Define partial class?
How to connect and retrieve data from database using dataset
What is executenonquery ado.net?
Which components of a data provider is used to retrieve, insert, delete, or modify data in a data source?
Explain the overview of ado.net architecture?