copy data from another datasets

  • Thread starter Thread starter SIS01
  • Start date Start date
S

SIS01

Hi all!

Im new in VB.NET

Id like to copy data from DS1.DT1 to DS2.DT2 without alter the DT2
structure.

DT1 DT2
col1 col1
col2 col2
col3 col3
col4 col4
col5
col6

How can i do that?

thanks in advance!
 
Use the dataset.merge
Be aware that the column names and datatable names should be the same.

Success

Cor

"SIS01" wrote in message
Hi all!

Im new in VB.NET

Id like to copy data from DS1.DT1 to DS2.DT2 without alter the DT2
structure.

DT1 DT2
col1 col1
col2 col2
col3 col3
col4 col4
col5
col6

How can i do that?

thanks in advance!
 
Back
Top