Save From XML

  • Thread starter Thread starter MDB
  • Start date Start date
M

MDB

Hello All, I have an xml file that matches one of my database tables
exactly. Is there a way to easily update/insert into the database using
this xml file. I have tried playing around with the data adaptors however,
I have been unsuccessful.
 
Look at the XmlDataDocument class to create a dataset from your XML string,
then you can use ADO.NET to do the insert.
 
Back
Top