Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What's the difference between Dataset.clone and Dataset.copy?

Answer Posted / dasaradhi

Clone -- Creates another reference (Pointer) to the same
location.

Copy -- Creates two different references to two different
Address Spaces

DataSet dsOriginal = new DataSet();
DataSet dsClone = dsOriginal.Clone();
DataSet dsCopy = dsCopy.Copy();

What does this mean?
Well, here is the answer.
If you make changes to dsClone, they will reflect in
dsOriginal also. where as you do changes to dsCopy, the
changes will not reflect in dsOriginal.

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ado.net architecture?

969


How would you connect to a database by using .NET?

989


Give few examples of datareader that is used in different dataproviders.

1009


What are the Data providers in ADO.Net?

1064


What are ado.net objects?

1198


Why is stored procedure used in ado.net?

1197


What are two types of transaction supported by ado.net?

1033


What are the drawbacks of using ado.net?

1012


What provider ado.net use by default? Explain the role of data provider in ado.net?

1019


What is ole data type?

966


Explain the architecture of ado.net?

1129


What is the role of the dataset object in ado.net?

1148


What are the several execute methods of ado.net?

973


What is the difference between data grid and data repeater?

1131


What is sqldatareader?

974