Important -> MDAC and XmlDataDocument

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.
 
G

Guest

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!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top