1
Reply

I have 3 daasets named as ds1,ds2,ds3. in ds3 I want to capture all result sets of ds1,ds2 as resultset. How can I achive this one.

    dataset class a support method called copy().using this method u can copy data in one dataset to other dataset.for example u have dataset ds1 which is having some data.now u want copy ds1 data into another dataset ds2.we can achieve this with the following code

    ds2=ds1.copy();

    *if u want to copy only structure of data without any actual data u can use clone() method of dataset object.