R
Rick
I have created a dataset and populated it via the ReadXML method.
i.e
DataSet dataset = new DataSet();
dataset.ReadXmlSchema(xsdPath);
dataset.ReadXml(xmlReader,XmlReadMode.ReadSchema);
This works fine and provides me with a dataset that matches the
datastructure of a sql database (done with the xsd schema) which
resides on the same server.
I now need to put this dataset into the database.
How do I do this?
I cannot find code examples anywhere!
Please can somebody provide me with an example?
i.e
DataSet dataset = new DataSet();
dataset.ReadXmlSchema(xsdPath);
dataset.ReadXml(xmlReader,XmlReadMode.ReadSchema);
This works fine and provides me with a dataset that matches the
datastructure of a sql database (done with the xsd schema) which
resides on the same server.
I now need to put this dataset into the database.
How do I do this?
I cannot find code examples anywhere!
Please can somebody provide me with an example?