how to merge two or more datasets ?
Visual Basic
2
Posts
2
Posters
1
Views
1
Watching
-
please tell me how to merge two or more datasets and tel me the situation when merging dataset is required. please help me and give the sample code. tbhattacharjee
-
please tell me how to merge two or more datasets and tel me the situation when merging dataset is required. please help me and give the sample code. tbhattacharjee
dataset.merge() It is usually used to synch a data set on the client with updated data from the db server. For instance I download the customers I am browsing and updating, I save to the dbserver. Others may be doing the same. You pull down new data from the dbserver and merge it with what you allready have on the client. There are other instances but I think this is the most common.