How to import XML file into Access 2002?

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

Hi All,

Scenario:
I have a A.xml file containing the following format.
<tblA>
<AID>1</AID>
<tblA>

How do I import it into a tblA table in dbA.mdb?

Thanks in advance. =)


Regards,
Sean
 
Use the DataSet XMLRead method.

MyDataSet.XMLRead("Your XML File Path and Name.xml")

--

OHM ( Terry Burns )
. . . One-Handed-Man . . .

Time flies when you don't know what you're doing
 
sorry that should have been

ds.ReadXml("MyXML.xml")


--

OHM ( Terry Burns )
. . . One-Handed-Man . . .


Time flies when you don't know what you're doing
 

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

Back
Top