1.

What is the difference between Dataset.clone() and Dataset.copy()?

Answer»

DataSet. Clone() copies only the DataSet object's SCHEMA and RETURNS a DataSet object with the same structure as the existing dataset object, including all the relations, constraints, and SCHEMAS. The data from the OLD one will not be copied to the NEW one.

DataSet.Copy() copies the entire code and structure of an existing DataSet object. 



Discussion

No Comment Found