I know XML has been around for ever, but in my own experience I have not yet had an opportunity to deal with it. So here comes a beginner's questions.
I have an XML file that has a format like this:
<something>
<comments>
<comment id="1" poster="2">
<comment id="2" poster="23">
<comment id="2" poster="22">
...
</comments>
<posters>
<poster id="2" user="ann">
<poster id="23" user="rydel">
...
</poster>
</something>
What would be the easiest and simplest way to convert the above XML file in an Access database with two respective tables comments (id, poster) / posters (id, user)?
regards,
rydel n23
I have an XML file that has a format like this:
<something>
<comments>
<comment id="1" poster="2">
<comment id="2" poster="23">
<comment id="2" poster="22">
...
</comments>
<posters>
<poster id="2" user="ann">
<poster id="23" user="rydel">
...
</poster>
</something>
What would be the easiest and simplest way to convert the above XML file in an Access database with two respective tables comments (id, poster) / posters (id, user)?
regards,
rydel n23