% <recording>
% <video>
% <name>Gone With The Wind</name>
% <star>Clark Gable</star>
% <year_released>1950</year_released>
% </video>
% </recording>
Obviously, this data is incorrect. Everyone knows Vivien Leigh was the
star of that movie.
% I assume that I would need an application to strip the XML tag names
% from the original document and not a process using XSLT.
You can get your comma-delimited list using XSLT.
<xsl:stylesheet xmlns:xsl="
http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl
utput method="text"/>
<xsl:template match="video">
<xsl:value-of select="name"/>
<xsl:text>, </xsl:text>
<xsl:value-of select="star"/>
<xsl:text>, </xsl:text>
<xsl:value-of select="year_released"/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>
If it's not clear how to deal with your real dataset from this,
you should find some documentation and read it.
% correct? The commas are immaterial. All I want to do is to be able
% to feed the contents of an XML document into an Access database. What
% do I use to do this.
There are tools out there that stuff databases with data from XML
documents. I'd be inclined to write a program that parses the
XML file and load the database directly, but then I'd know how to
go about it...