How to get the raw xml of a DataRow?

  • Thread starter Thread starter Mehdi Mousavi
  • Start date Start date
M

Mehdi Mousavi

Hi folks,
I need to get the raw xml of a specific DataRow (and all of its child
elements) as a string but I've got no idea how this has to be done
*properly*. Any idea would be highly appreciated.

Cheers,
Mehdi
 
Hi Medhi,

Just an idea never tried,

Why not "import" the datarow in a new dataset and than write that new
dataset with
ds.writeXML(mypath)

I hope this works?

Cor
 
Back
Top