| 1. |
What Is The Difference Between The Clone() And Copy() Methods Of The Dataset Class? |
|
Answer» The CLONE() method copies only the STRUCTURE of a DATASET. The COPIED structure includes all the relation, constraint, and DataTable schemas USED by the DataSet. The Clone() method does not copy the data, which is stored in the DataSet. The Clone() method copies only the structure of a DataSet. The copied structure includes all the relation, constraint, and DataTable schemas used by the DataSet. The Clone() method does not copy the data, which is stored in the DataSet. |
|