XML/ADO Deployment Question.

  • Thread starter Thread starter Trey
  • Start date Start date
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();
 
In order for any machine to run a .NET application, it must first have the
..NET Framework installed. During this installation, certain Windows
components are updated automatically. MDAC is one of them.
 
What if a computer does not have MDAC on it at all. Will it install the
latest version?

Thanks,
Trey Weaver
 
Yes. As I said, during the installation, certain Windows components are
updated and MDAC is included.
 
Back
Top