使用Access导入XML文件,更新然后输出相同的XML文件

时间:2019-01-30 22:47:35

标签: xml ms-access xslt

我有一个要输入到MSAccess中的XML文件,它会更新一些元素,然后使用更新导出相同的XML文件。

我创建了一个XSL文件,以将“父/子”关系转换为平面文件,但是仅向我显示了MSAccess文件“导入”中的/条目。

您能指导我研究如何使用MSAccess和或SQL导入和导出同一文件。

XML数据

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="CD-Catalog-New2.xsl"?>
<catalog>
  <cd>
    <title>Empire Burlesque</title>
    <artist>Bob Dylan</artist>
    <country>USA</country>
    <company>Columbia</company>
    <price>10.90</price>
    <years>
      <year>1985</year>
      <year>1986</year>
      <year>1987</year>
    </years>
  </cd>
    ETC.

XSL代码是:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"      xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<html> 
<body>
  <table>
    <tr>
      <th style="text-align:left">Title</th>
      <th style="text-align:left">Artist</th>
      <th style="text-align:left">Country</th>
      <th style="text-align:left">Company</th>
      <th style="text-align:left">Price</th>
      <th style="text-align:left">Year1</th>
      <th style="text-align:left">Year2</th>
      <th style="text-align:left">Year3</th>
    </tr>
    <xsl:for-each select="catalog/cd">
    <tr>
      <td><xsl:value-of select="title"/></td>
      <td><xsl:value-of select="artist"/></td>
      <td><xsl:value-of select="country"/></td>
      <td><xsl:value-of select="company"/></td>
      <td><xsl:value-of select="price"/></td>
      <xsl:for-each select="years/year">
        <td><xsl:value-of select="."/></td>
      </xsl:for-each>
    </tr>
    </xsl:for-each>
  </table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

Access XML Import

您可以猜到,我在这种XML,XSL等方面还很陌生。 超过70,但仍然可以学习。 帮助将不胜感激

0 个答案:

没有答案