我正在尝试通过 Oxygen 测试 Saxon EE 的 sql 扩展的使用情况。我收到驱动程序加载失败的错误:
引擎名称:Saxon-EE 11.4
严重性:致命
问题 ID:SXSQ0003
描述:无法加载 JDBC 驱动程序 org.sqlite.JDBC
起始位置:30:106
URL: http: //www.saxonica.com/html/documentation/javadoc/网/SF/撒克逊/trans/SaxonErrorCode.html#SXSQ0003
这是我的 XSL:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sql="http://saxon.sf.net/sql"
xmlns:saxon="http://saxon.sf.net/"
exclude-result-prefixes="xs"
version="3.0">
<xsl:param name="user"/>
<xsl:param name="password"/>
<xsl:variable name="driver" select="'org.sqlite.JDBC'"/>
<xsl:variable name="database" select="'jdbc:sqlite:S1000D.db'"/>
<xsl:template match="/">
<test-output>
<xsl:apply-templates/>
</test-output>
</xsl:template>
<xsl:template match="xref">
<xsl:variable name="xrefid" select="@xrefid"/>
<xsl:if test="not(element-available('sql:connect'))">
<xsl:message terminate="yes">sql:connect not available</xsl:message>
</xsl:if>
<xsl:message>Connecting to <xsl:value-of select="$database"/>...</xsl:message>
<xsl:variable name="conn" as="java:java.sql.Connection" xmlns:java="http://saxon.sf.net/java-type">
<sql:connect driver="{$driver}" database="{$database}" user="{$user}" password="{$password}">
<xsl:fallback>
<xsl:message terminate="yes">SQL Extensions are not installed</xsl:message>
</xsl:fallback>
<xsl:message>Connected...</xsl:message>
</sql:connect>
</xsl:variable>
<xsl:variable name="q">
<sql:query connection="$conn" table="'DataModule'" column="'*'" where="'LmTask_ID = {$xrefid}'"/>
</xsl:variable>
<xsl:for-each select="$q">
<dmRef>
<dmcode>
<!-- Use values from the query to populate the dmcode attributes -->
</dmcode>
</dmRef>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
这是我们项目中的 SaxonEE 配置文件:
<configuration edition="EE" xmlns="http://saxon.sf.net/ns/configuration" label="Saxon-EE (no threads)">
<global allowMultiThreading="false"
timing="true"
validationWarnings="true"
validationComments="true"
allowExternalFunctions="true"
compileWithTracing="false"
lineNumbering="true"
traceExternalFunctions="true"
expandAttributeDefaults="true"
allowSyntaxExtensions="true"/>
<xslt>
<extensionElement namespace="http://saxon.sf.net/sql" factory="net.sf.saxon.option.sql.SQLElementFactory"/>
</xslt>
</configuration>
我尝试将最新的 SQLite 驱动程序 jar (sqlite-jdbc-3.42.0.0.jar) 复制到 Oxygen lib 文件夹,但它抱怨。我将其移至 lib/connectors 文件夹。它没有抱怨它位于那里,但仍然失败。我不知道在哪里找到 jar 以便 Saxon 加载 JDBC。
任何帮助深表感谢。