缩短我的问题。我有一个MySQL v5.5数据库,中等BLOB包含加密的PDF图像。
我的FE是Access 2010,带有指向MySQL文档表的链接。
我正试图找到一种方法来显示Access中VBA代码的图像。
表:文件 列:
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/list">
<body>
<xsl:for-each-group select="item" group-starting-with="item[@class='start']">
<xsl:for-each-group select="current-group()" group-ending-with="item[@class='end']">
<xsl:choose>
<xsl:when test="count(current-group()) gt 1">
<div>
<xsl:apply-templates select="current-group()" />
</div>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="current-group()" />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>
</xsl:for-each-group>
</body>
</xsl:template>
<xsl:template match="item">
<p>
<xsl:value-of select="."/>
</p>
</xsl:template>
</xsl:stylesheet>
我一直在做研究,还没有找到一个好的解决方案。 我可以运行MySQL存储过程,从Access中将加密和DumpFile解密文件插入/移出BLOB。
任何指导或样本都会非常有用。