Class DocumentBuilder
Class DomDestination
Class DynamicContext
Class DynamicError
Class EmptyEnumerator
Class ExtensionFunctionCall
Class InvalidityHandlerWrapper
Class NamespaceConstant
Class NullDestination
Class Processor
Class QName
Class SchemaManager
Class SchemaValidator
Class Serializer
Class StandardLogger
Class StaticContext
Class StaticError
Class TextWriterDestination
Class WhitespacePolicy
Class XPathCompiler
Class XPathExecutable
Class XPathSelector
Class XQueryCompiler
Class XQueryEvaluator
Class XQueryExecutable
Class XdmAnyFunctionType
Class XdmAnyItemType
Class XdmAnyNodeType
Class XdmArray
Class XdmAtomicType
Class XdmAtomicValue
Class XdmDestination
- Class TreeProtector
Class XdmEmptySequence
Class XdmExternalObjectValue
Class XdmFunctionItem
Class XdmItem
Class XdmItemType
Class XdmMap
Class XdmNode
Class XdmNodeKind
Class XdmSequenceType
Class XdmValue
Class XmlDestination
Class Xslt30Transformer
Class XsltCompiler
Class XsltExecutable
- Class ParameterDetails
Class XsltPackage
Class XsltTransformer
Enum RecoveryPolicy
Enum SchemaValidationMode
Enum TreeModel
Enum XdmAxis
Interface IInvalidityHandler
Interface IMessageListener
Interface IQueryResolver
Interface IResultDocumentHandler
Interface IXdmEnumerator
Interface IXmlLocation
Interface SchemaResolver
public class XQueryExecutable
An XQueryExecutable
represents the compiled form of a query. To execute the query,
it must first be loaded to form an XQueryEvaluator
.
An XQueryExecutable
is immutable, and therefore thread-safe. It is simplest to
load a new XQueryEvaluator
each time the query is to be run. However, the
XQueryEvaluator
is serially reusable within a single thread.
An XQueryExecutable
is created by using one of the Compile
methods on the XQueryCompiler
class.
Property Summary | |
---|---|
bool |
IsUpdateQuery Ask whether this is an updating query (that is, one that returns a pending update list rather than a convensional value). |
Method Summary | |
---|---|
net.sf.saxon.query.XQueryExpression |
getUnderlyingCompiledQuery() |
XQueryEvaluator |
Load() Load the query to prepare it for execution. |
Property Detail |
---|
public bool IsUpdateQuery {get; }
Ask whether this is an updating query (that is, one that returns a pending update list rather than a convensional value).
Property added in Saxon 9.1
Method Detail |
---|
Load the query to prepare it for execution.
XQueryEvaluator
. The returned XQueryEvaluator
can be used to
set up the dynamic context for query evaluation, and to run the query.