Important -> MDAC and XmlDataDocument

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi!

I have a windows forms application and , what I basically do is:

1.- Instanciate a DataSet.
2.- Instanciate a XMlDataDocument attaching the DataSet to it.
3.- Load XmlDataDocument with a local XML document (C:\mydoc.xml)
2.- Bind it to a Datagrid.
That is all!

My app doesn't need to access SQL Server, or any other ODBC, not even to MS
Access....

Is MDAC still required on the target machine in order for this to work?

I have not tried it on a machine that does not have MDAC installed so I
don't know if it works....

Thanks in advance.
 
Thanks a lot!

Just one more.. Can I perform acctions like these with no problems?
ds.Tables("X").Rows.Remove(dr)
ds.Tables("X").Rows.Add(RowVals)

Thanks again!!
 
Back
Top