transfer data from xml to database table
i have an xml document i need to convert this xml doc to a database table (for ex access or oracle table) by creating a table and transfering the xml contents into records of the table in vb.net. Please help me
mathu mathiPosted Mar 11, 2009, 1:18 PM
Mahesh ChandPosted Mar 7, 2009, 9:35 PM
You can load XML contents to an XmlDocument or XmlDataDocument objects or use DataSet.LoadXml method to load data from XML to a DataSet. Once you have a DataSet, you can use it to save it to a database table using DataAdapter.Update method.
Search this site or C# Corner how to save a DataSet into a database.