0
我想知道如何一個創建一個集合,並增加了一個文件到集合中的一個新的左巴使用命令行界面http://www.zorba-xquery.com/html/documentation/2.7.0/zorba/commandline創建集合,使用命令行將文檔添加到zorba?
如果不能用命令行中使用腳本API將是很好的做一個例子安裝。
我想知道如何一個創建一個集合,並增加了一個文件到集合中的一個新的左巴使用命令行界面http://www.zorba-xquery.com/html/documentation/2.7.0/zorba/commandline創建集合,使用命令行將文檔添加到zorba?
如果不能用命令行中使用腳本API將是很好的做一個例子安裝。
這可以使用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"));