【发布时间】:2019-01-01 22:04:36
【问题描述】:
前言:Oracle 实现可能不是开源的。解决方法似乎是使用saxonica。
如何导入OXQDataSource?
Oracle 使用:
import oracle.xml.xquery.OXQDataSource;
但这从何而来?
我不明白要导入什么,也不知道 JAR 的类路径上应该是什么 XQJ 示例 7-1 来自 Oracle docs,因为我在尝试编译时得到 error: package oracle.xml.xquery does not exist。
XQJ 的package 是在java.lang.Object 下吗?
编译错误,包不存在:
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
thufir@dur:~/NetBeansProjects/helloWorldBaseX$ gradle clean run
> Task :compileJava FAILED
/home/thufir/NetBeansProjects/helloWorldBaseX/src/main/java/org/basex/examples/local/App.java:15: error: package oracle.xml.xquery does not exist
import oracle.xml.xquery.OXQDataSource;
^
/home/thufir/NetBeansProjects/helloWorldBaseX/src/main/java/org/basex/examples/local/App.java:46: error: cannot find symbol
OXQDataSource ds = new OXQDataSource();
^
symbol: class OXQDataSource
location: class App
/home/thufir/NetBeansProjects/helloWorldBaseX/src/main/java/org/basex/examples/local/App.java:46: error: cannot find symbol
OXQDataSource ds = new OXQDataSource();
^
symbol: class OXQDataSource
location: class App
3 errors
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':compileJava'.
> Compilation failed; see the compiler error output for details.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 0s
2 actionable tasks: 2 executed
thufir@dur:~/NetBeansProjects/helloWorldBaseX$
导入代码:
package org.basex.examples.local;
import java.io.IOException;
import java.util.Properties;
import java.util.logging.Logger;
import javax.xml.xquery.XQConnection;
import javax.xml.xquery.XQException;
import javax.xml.xquery.XQPreparedExpression;
import javax.xml.xquery.XQSequence;
import org.basex.core.BaseXException;
import org.basex.core.Context;
import org.basex.core.cmd.CreateDB;
import org.basex.core.cmd.DropDB;
import org.basex.core.cmd.List;
import oracle.xml.xquery.OXQDataSource;
public final class App {
private static final Logger LOG = Logger.getLogger(App.class.getName());
private final Properties properties = new Properties();
private final Context context = new Context();
public static void main(String[] args) throws BaseXException, IOException {
LOG.fine("starting..");
new App().helloWorld();
}
private void list() throws BaseXException {
LOG.info(new List().execute(context));
}
private void helloWorld() throws BaseXException, IOException {
properties.loadFromXML(App.class.getResourceAsStream("/basex.xml"));
String databaseName = properties.getProperty("databaseName");
String databasePath = properties.getProperty("databasePath");
list();
new CreateDB(databaseName, databasePath).execute(context);
list();
new DropDB(databaseName).execute(context);
list();
}
private void oracleXQJ() throws XQException {
OXQDataSource ds = new OXQDataSource();
XQConnection con = ds.getConnection();
String query = "<hello-world>{1 + 1}</hello-world>";
XQPreparedExpression expr = con.prepareExpression(query);
XQSequence result = expr.executeQuery();
// prints "<hello-world>2</hello-world>"
System.out.println(result.getSequenceAsString(null));
result.close();
expr.close();
con.close();
}
}
我只是将导入语句扔在那里以生成特定错误。应该导入什么,从什么导入?
只有这一类会出现问题,原因不明。不知道如何导入,也不知道该导入在 classpath 上放什么。
我see:
The lib directory contains these JAR and ZIP files:
classgen.jar
jdev-rt.zip
oraclexsql.jar
transx.zip
xml.jar
xml2.jar
xmldemo.jar
xmlmesg.jar
xmlparserv2.jar
xschema.jar
xsqlserializers.jar
xsu12.jar
The jlib directory contains these JAR files:
orai18n.jar
orai18n-collation.jar
orai18n-mapping.jar
orai18n-utility.jar
其中一个,大概是OXQDataSource。
【问题讨论】:
-
stackoverflow.com/a/30414539/262852 用于 Oracle 解决方案。
-
这对 SO 来说太宽泛了。在这里问:softwarerecs.stackexchange.com/q/54194/13043
标签: java classpath sax saxon saxparser