convert 2 XML files into a dataset

  • Thread starter Thread starter RC
  • Start date Start date
R

RC

Hi,

I now have 2 xml files with same structure

first.xml
<dataset1>
<table1>
<col1>aaa</col1>
<col2>bbb</col2>
</table>
.....
</dataset1>

2nd.xml
<dataset1>
<table1>
<col1>ccc</col1>
<col2>ddd</col2>
</table>
.....
</dataset1>

how can I merge these 2 set of data into a single dataset?

thanks
 
Back
Top