dbxmlQuerydbxmlQuery
Make an XQuery on BDBXML respository.
Home > Books > NetKernel API and Services Reference > Accessor Listing > Berkeley DBXML Accessors and Utilities > dbxmlQuery

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:mod:dbxml

The dbxmlQuery accessor is exported by the urn:org:ten60:netkernel:mod:dbxml module. Import this module to gain access to the accessor.

Syntax

URI
active:dbxmlQuery

ArgumentRulesDescription
operatorMandatory the query specification

Example Usage

DPML

<instr>
  <type>dbxmlQuery</type>
  <operator>
    <dbxml>
      <container>mycontainer</container>
      <xquery> &lt;root&gt; { collection('mycontainer')/* } &lt;/root&gt; </xquery>
    </dbxml>
  </operator>
  <target>var:resultset</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:dbxmlQuery");
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

The dbxmlQuery accessor performs an XQuery on the Berkeley DBXML database. The response is a BDBXMLResultAspect - if the result set contains a single well-formed document then it can be automatically transrepted and used by any XML tool.

Operator Format

The format for the operator is...

<dbxml>
  <container>someContainerName</container>
  <xquery> ...Must be a CDATA Section containing XQuery... </xquery>
</dbxml>

The container tag specifies the identity of the container in the BDBXML database to query. For details of the XQuery syntax see the references below.

Reference

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.