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
Does executenonquery return a value?
What is ado.net explain with diagram?
Is it possible to edit data in Repeater control?
Command objects uses, purposes and their methods.
What is variable view?
How do you implement locking concept for dataset?
What is meant by ‘transaction’ in a database and what are the ‘properties of transaction’?
What are the uses of Stored Procedure?
Explain sqlconnection object?
The answers which posted above is not satisfied my requirement? Can some one post teh exact answer? Thanx
Explian About DataAdapters
What is data adapter in ado.net with example?
What is data reader in ado.net?
how can implement dropdownlist in particular of dataset when try to update?
In how many ways we can retrieve table records count? How to find the count of records in a dataset?