从理论上讲,如何在Java中为BaseX数据库运行命令(如http://docs.basex.org/wiki/Commands中描述的命令)。是否存在一些可以在高于XPath的抽象级别上工作的框架?
答案 0 :(得分:2)
BaseX提供了一大堆native language clients that directly connect with BaseX' API。
使用QUERY
命令可归结为连接,然后查询数据库,摘录自官方查询documentation example:
// create session
BaseXClient session = new BaseXClient("localhost", 1984, "admin", "admin");
final String input = "for $i in 1 to 10 return <xml>Text { $i }</xml>";
Query query = session.query(input);
while(query.more()) {
System.out.println(query.next());
}
其他命令具有相同的界面。
BaseX也可以在Java的嵌入式模式下使用,请参阅BaseX文档的"Local Examples"部分。