DataSet XML load and save

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

Hello.

How can I save the both schema and data XML from DataSet to the string and
then load it in another DataSet form this string?
I found GetXML() and GetXmlSchema() methods, but I need some method which
makes the both action of these methods.

Thank you.
 
hi Dave
why dont you load the XML schema first to the string . then use GetXml to
append to the xml content to the same string like all = all + GetXml()
.better even use stringBuilder . hope this could work
Mohamed Mahfouz
MEA Developer Support Center
ITworx on behalf of Microsoft EMEA GTSC
 
Back
Top