Explain the difference between dataset clone and dataset copy - DOT.NET

Explain the difference between Dataset.clone() and Dataset.copy()?

Dataset.clone():
- It duplicates the structure of a dataset, without duplicating the data.
- It only copies the structure but does not copies the data.

Dataset.copy():
- It performs a deep copy of the dataset.
- It copies both data and structure.
Explain the difference between DataSet and DataReader - DOT.NET
Datareader fetches one row at a time from the datasource. DataSet fetches all data from the datasource at a time to its memory area.....
How do we step through code? - DOT.NET
Stepping through the code is a way of debugging the code in which one line is executed at a time.....
What are the debugging windows available? - DOT.NET
The windows which are available while debugging are: Breakpoints, Output, Watch, Autos, Local, Immediate.....
Post your comment