前言:Oracle实现可能不是开源的。解决方法似乎是使用saxonica
。
如何导入OXQDataSource
?
Oracle使用:
import oracle.xml.xquery.OXQDataSource;
但这是从哪里来的?
对于从Oracle docs来的JAR
示例XQJ
,7-1
示例error: package oracle.xml.xquery does not exist
,我不理解要导入什么,XQJ
应该在类路径中{1}}尝试编译时。
{{1}下的java.lang.Object
的{{3}}是吗?
编译错误,包不存在:
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();
}
}
我只是将那个import语句放在那里以生成特定错误。应该从什么进口什么?
由于未知原因,只有这门课给学生带来了问题。不知道如何导入,也不确定要为导入导入package的内容。
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
。
答案 0 :(得分:1)
XQJ的设计是从创建代表特定XQuery引擎和数据库的数据源开始,然后建立从应用程序到该数据源的连接,然后使用标准接口对数据源执行查询。 。原则上,如果要切换到其他查询引擎,则只需实例化其他数据源。因此,如果要从Oracle切换到Saxon,请实例化Saxon数据源而不是Oracle数据源。