T
Trey
I saw in another post that if you use the System.Data namespace you must
deploy MDAC 2.6 or MDAC 2.7 with your application.
Is that correct if you are using a DataSet to load Tables with XML data
only? Like this:
XMLDataFile = Application.StartupPath + @"\Data\theData.xml";
XMLSchemaFile = Application.StartupPath + @"\Data\theData.xsd";
dset.ReadXmlSchema(XMLSchemaFile);
dset.ReadXml(XMLDataFile);
dset.AcceptChanges();
deploy MDAC 2.6 or MDAC 2.7 with your application.
Is that correct if you are using a DataSet to load Tables with XML data
only? Like this:
XMLDataFile = Application.StartupPath + @"\Data\theData.xml";
XMLSchemaFile = Application.StartupPath + @"\Data\theData.xsd";
dset.ReadXmlSchema(XMLSchemaFile);
dset.ReadXml(XMLDataFile);
dset.AcceptChanges();