0

我想知道如何使用命令行界面http://www.zorba-xquery.com/html/documentation/2.7.0/zorba/commandline在新的 zorba 安装中创建一个集合并将文档添加到该集合

如果不能通过命令行完成,那么使用脚本 api 的示例会很好。

4

1 回答 1

0

这可以使用 XQuery 脚本来完成。考虑以下 XQuery 模块:

module namespace news-data = "http://www.news.org/data";

declare namespace an = "http://www.zorba-xquery.com/annotations";

declare collection news-data:employees as element(employee)*;
declare variable $news-data:employees := xs:QName('news-data:employees');

你可以像这样使用它:

import module namespace news-data = "http://www.news.org/data" at "news-data.xq";

import module namespace ddl = "http://www.zorba-xquery.com/modules/store/static/collections/ddl";
import module namespace dml = "http://www.zorba-xquery.com/modules/store/static/collections/dml";

ddl:create($news-data:employees);
dml:insert-nodes($news-data:employees, doc("test2.xml"));
于 2012-12-05T12:42:57.767 回答