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 に答える