我想知道如何使用命令行界面http://www.zorba-xquery.com/html/documentation/2.7.0/zorba/commandline
在新的zorba安装中创建集合并将文档添加到该集合如果无法使用命令行完成,则使用脚本api的示例会很好。
答案 0 :(得分: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"));