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 namespace in ado.net?
What is csdl entity framework?
What are the namespaces used in ADO.Net to connect to a database?
What is ole used for?
What is the purpose of using adodb?
What is a string variable?
What are datareaders?
How do you find the count of records in a dataset?
What are the advantages using ado.net?
What is the difference between the clone() and copy() methods of the dataset class?
Describe the command object and its method.
What is ado.net objects?
How is it possible to get 2 tables of data at a time by using data reader?
Explain executenonquery?
What are the ado.net objects?