Berkeley DB XML
version 2.3.10

Uses of Class
com.sleepycat.dbxml.XmlQueryExpression

Packages that use XmlQueryExpression
com.sleepycat.dbxml Berkeley DB XML Java API
[reference guide]
 

Uses of XmlQueryExpression in com.sleepycat.dbxml
 

Methods in com.sleepycat.dbxml that return XmlQueryExpression
 XmlQueryExpression XmlManager.prepare(String query, XmlQueryContext context)
          Compile an XQuery expression into an XmlQueryExpression object.
 XmlQueryExpression XmlManager.prepare(XmlTransaction txn, String query, XmlQueryContext context)
          Compile an XQuery expression into an XmlQueryExpression object.
 

Methods in com.sleepycat.dbxml with parameters of type XmlQueryExpression
 void XmlModify.addAppendStep(XmlQueryExpression selectionExpr, int type, String name, String content)
          Appends the provided data to the selected node's child nodes.
 void XmlModify.addAppendStep(XmlQueryExpression selectionExpr, int type, String name, String content, int location)
          Appends the provided data to the selected node's child nodes.
 void XmlModify.addAppendStep(XmlQueryExpression selectionExpr, int type, String name, XmlResults resultContent, int location)
          Appends the provided data to the selected node's child nodes, using an XmlResults object as content.
 void XmlModify.addInsertAfterStep(XmlQueryExpression selectionExpr, int type, String name, String content)
          Inserts the provided data into the document after the selected node.
 void XmlModify.addInsertAfterStep(XmlQueryExpression selectionExpr, int type, String name, XmlResults resultContent)
          Inserts the provided data into the document after the selected node using the specified XmlResults object as content.
 void XmlModify.addInsertBeforeStep(XmlQueryExpression selectionExpr, int type, String name, String content)
          Inserts the provided data into the document before the selected node, as a previous sibling.
 void XmlModify.addInsertBeforeStep(XmlQueryExpression selectionExpr, int type, String name, XmlResults resultContent)
          Inserts the provided data into the document before the selected node, as a previous sibling using an XmlResults object as content If the operation's target is an attribute node or the document root node, an exception is thrown at modification execution time.
 void XmlModify.addRemoveStep(XmlQueryExpression selectionExpr)
          Removes the node targeted by the selection expression.
 void XmlModify.addRenameStep(XmlQueryExpression selectionExpr, String newName)
          Renames an element node, attribute node, or processing instruction.
 void XmlModify.addUpdateStep(XmlQueryExpression selectionExpr, String content)
          Replaces the targeted node's content with text.
 

Constructors in com.sleepycat.dbxml with parameters of type XmlQueryExpression
XmlQueryExpression(XmlQueryExpression queryExpression)
          Copy constructor.
 


Berkeley DB XML
version 2.3.10

Copyright 1996,2007 Oracle. All rights reserved.