Converting a multiLevel XML into a dataset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have an XML which has 2 levels of children . That is 1 parent table - > 1
child table
-> 1 grand child table. Is there anyway the XML can be directly converted
into dataset. Can you give me a sample.

Regards,
Srini
 
Srini,

The first thing you can do is to open it as an existing item XLS in your
IDE.

I hope this helps,

Cor
 
Srini,

Not every XML structure corresponds to a dataset, but every dataset can be
converted to XML.

As long as your XML structure corresponds to a dataset, then you can simply
ReadXML on the DataSet.
 
Back
Top