public interface XQDynamicContext
XQDynamicContext provides access to the dynamic context as defined in 2.1.2 Dynamic Context, XQuery 1.0: An XML Query Language. The following components can be accessed:
XQPreparedExpression, values may only be bound to those variables that are defined in the prolog of the expression.
Example -
XQConnection conn = XQDataSource.getConnection();
// create an XQPreparedExpression with external variable
XQPreparedExpression e1 = conn.prepareExpression("declare variable $i as xs:int external;
$i + 10");
// bind an int to the external variable
e1.bindInt(new QName("i"), 200, null);
// this will fail as the expression has no external variable $foo
e1.bindInt(new QName("foo"), 200, null);
// this will fail as xs:double is not compatible with an external
variable declared as xs:int
e1.bindDouble(new QName("i"), 2e2, null);
// create an XQExpression with external variable
XQExpression e2 = conn.createExpression();
// bind a value to $i and $foo
e2.bindInt(new QName("i"), 200, null);
e2.bindInt(new QName("foo"), 200, null);
// the value bound to $foo is ignored as the expression doesn't
// declare $foo as external variable
e2.executeQuery("declare variable $i as xs:int external; $i + 10");
bindXXX() method, use XQConstants.CONTEXT_ITEM as the first argument.The default binding mode is immediate. In other words, the external variable value specified by the application is consumed during the bindXXX() method.
An application has the ability to set the binding mode to deferred. In deferred mode an application cannot assume that the bound value will be consumed during the invocation of the bindXXX method. In such scenario the order in which the bindings are evaluated is implementation-dependent, and an implementation doesn't necessarily need to consume a binding if it can evaluate the query without requiring the external variable. The XQJ implementation is also free to read the bound value either at bind time or during the subsequent evaluation and processing of the query results.
Also note that in deferred binding mode, bindings are only active for a single execution cycle. The application is required to explicitly re-bind values to every external variable before each execution. Failing to do so will result in an XQException, as the implementation will assume during the next execution that none of the external variables are bound.
Finally, note that in deferred binding mode, any error condition specified to throw an exception during the bindXXX() methods, may as well be thrown later during the query's evaluation.
Example - in case of an immediate binding mode, bindings stay active over executions
// BINDING_MODE_IMMEDIATE is the default, no need to change it
QName v = new QName(v);
XQPreparedExpression e = c.prepareExpression("declare variable $v
external; $v");
e.bindInt(v, 1)
// successful execution
e.executeQuery();
// successful execution
e.executeQuery();
// BINDING_MODE_IMMEDIATE is the default, change it to
// BINDING_MODE_DEFERRED
XQStaticContext cntxt = c.getStaticContext();
cntxt.setBindingMode(XQConstants.BINDING_MODE_DEFERRED);
c.setStaticContext(cntxt);
QName v = new QName(v);
XQPreparedExpression e = c.prepareExpression("declare variable $v
external; $v");
e.bindInt(v, 1)
// successful execution
XQSequence s = e.executeQuery();
while (s.next())
System.out.println(s.getInt());
// an error is reported during the next query
// evaluation as not all external variables are bound
s = e.executeQuery();
while (s.next())
System.out.println(s.getInt());
| Modifier and Type | Method and Description |
|---|---|
void |
bindAtomicValue(javax.xml.namespace.QName varName, java.lang.String value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindBoolean(javax.xml.namespace.QName varName, boolean value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindByte(javax.xml.namespace.QName varName, byte value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindDocument(javax.xml.namespace.QName varName, java.io.InputStream value, java.lang.String baseURI, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindDocument(javax.xml.namespace.QName varName, java.io.Reader value, java.lang.String baseURI, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindDocument(javax.xml.namespace.QName varName, Source value, XQItemType type)
Binds a value to the given external variable or the context item from the given
Source. |
void |
bindDocument(javax.xml.namespace.QName varName, java.lang.String value, java.lang.String baseURI, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindDocument(javax.xml.namespace.QName varName, javax.xml.stream.XMLStreamReader value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindDouble(javax.xml.namespace.QName varName, double value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindFloat(javax.xml.namespace.QName varName, float value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindInt(javax.xml.namespace.QName varName, int value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindItem(javax.xml.namespace.QName varName, XQItem value)
Binds a value to the given external variable.
|
void |
bindLong(javax.xml.namespace.QName varName, long value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindNode(javax.xml.namespace.QName varName, Node value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindObject(javax.xml.namespace.QName varName, java.lang.Object value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindSequence(javax.xml.namespace.QName varName, XQSequence value)
Binds a value to the given external variable or the context item.
|
void |
bindShort(javax.xml.namespace.QName varName, short value, XQItemType type)
Binds a value to the given external variable or the context item.
|
void |
bindString(javax.xml.namespace.QName varName, java.lang.String value, XQItemType type)
Binds a value to the given external variable or the context item.
|
java.util.TimeZone |
getImplicitTimeZone()
Gets the implicit timezone
|
void |
setImplicitTimeZone(java.util.TimeZone implicitTimeZone)
Sets the implicit timezone
|
java.util.TimeZone getImplicitTimeZone()
throws XQException
setImplicitTimeZone method or provided by the implementationXQException - if the expression is in a closed state
void bindAtomicValue(javax.xml.namespace.QName varName,
java.lang.String value,
XQItemType type)
throws XQException
xs:string rules outlined in 17.1.1 Casting from xs:string and xs:untypedAtomic, XQuery 1.0 and XPath 2.0 Functions and Operators. If the cast fails, or if there is a mismatch between the static and dynamic types, an XQException is thrown either by this method or during query evaluation.varName - the name of the external variable to bind tovalue - the lexical string value of the typetype - the item type of the bindXQException - if (1) any of the arguments are null, (2) given type is not an atomic type, (3) the conversion of the value to an XDM instance failed, (4) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (5) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (6) the expression is in a closed state
void bindString(javax.xml.namespace.QName varName,
java.lang.String value,
XQItemType type)
throws XQException
xs:string or a type derived by restriction from xs:string. If the specified type is null, it defaults to xs:string.XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nulltype - the type of the value to be bound to the external variable. The default type, xs:string, is used in case null is specifiedXQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindDocument(javax.xml.namespace.QName varName,
java.lang.String value,
java.lang.String baseURI,
XQItemType type)
throws XQException
null, XQITEMKIND_DOCUMENT_ELEMENT, or XQITEMKIND_DOCUMENT_SCHEMA_ELEMENT.XQException is raised either by this method, or during query evaluation. If the value is not well formed, or if a kind of the input type other than the values list above is specified, behavior is implementation defined and may raise an exception.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nullbaseURI - an optional base URI, can be null. It can be used, for example, to resolve relative URIs and to include in error messages.type - the type of the value for the created document node. If null is specified, it behaves as if XQDataFactory.createDocumentElementType( XQDataFactory.createElementType(null, XQItemType.XQBASETYPE_XS_UNTYPED)) were passed in as the type parameter. That is, the type represents the XQuery sequence type document-node(element(*, xs:untyped))XQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindDocument(javax.xml.namespace.QName varName,
java.io.Reader value,
java.lang.String baseURI,
XQItemType type)
throws XQException
null, XQITEMKIND_DOCUMENT_ELEMENT, or XQITEMKIND_DOCUMENT_SCHEMA_ELEMENT.XQException is raised either by this method, or during query evaluation. If the value is not well formed, or if a kind of the input type other than the values list above is specified, behavior is implementation defined and may raise an exception.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nullbaseURI - an optional base URI, can be null. It can be used, for example, to resolve relative URIs and to include in error messages.type - the type of the value for the created document node. If null is specified, it behaves as if XQDataFactory.createDocumentElementType( XQDataFactory.createElementType(null, XQItemType.XQBASETYPE_XS_UNTYPED)) were passed in as the type parameter. That is, the type represents the XQuery sequence type document-node(element(*, xs:untyped))XQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindDocument(javax.xml.namespace.QName varName,
java.io.InputStream value,
java.lang.String baseURI,
XQItemType type)
throws XQException
null, XQITEMKIND_DOCUMENT_ELEMENT, or XQITEMKIND_DOCUMENT_SCHEMA_ELEMENT.XQException is raised either by this method, or during query evaluation. If the value is not well formed, or if a kind of the input type other than the values list above is specified, behavior is implementation defined and may raise an exception.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nullbaseURI - an optional base URI, can be null. It can be used, for example, to resolve relative URIs and to include in error messages.type - the type of the value for the created document node. If null is specified, it behaves as if XQDataFactory.createDocumentElementType( XQDataFactory.createElementType(null, XQItemType.XQBASETYPE_XS_UNTYPED)) were passed in as the type parameter. That is, the type represents the XQuery sequence type document-node(element(*, xs:untyped))XQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindDocument(javax.xml.namespace.QName varName,
javax.xml.stream.XMLStreamReader value,
XQItemType type)
throws XQException
null, XQITEMKIND_DOCUMENT_ELEMENT or XQITEMKIND_DOCUMENT_SCHEMA_ELEMENT.XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nulltype - the type of the value for the created document node. If null is specified, it behaves as if XQDataFactory.createDocumentElementType( XQDataFactory.createElementType(null, XQItemType.XQBASETYPE_XS_UNTYPED)) were passed in as the type parameter. That is, the type represents the XQuery sequence type document-node(element(*, xs:untyped))XQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindDocument(javax.xml.namespace.QName varName,
Source value,
XQItemType type)
throws XQException
Source. An XQJ implementation must at least support the following implementations:
javax.xml.transform.dom.DOMSourcejavax.xml.transform.sax.SAXSourcejavax.xml.transform.stream.StreamSourcenull, XQITEMKIND_DOCUMENT_ELEMENT, or XQITEMKIND_DOCUMENT_SCHEMA_ELEMENT.XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nulltype - the type of the value for the created document node. If null is specified, it behaves as if XQDataFactory.createDocumentElementType( XQDataFactory.createElementType(null, XQItemType.XQBASETYPE_XS_UNTYPED)) were passed in as the type parameter. That is, the type represents the XQuery sequence type document-node(element(*, xs:untyped))XQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void setImplicitTimeZone(java.util.TimeZone implicitTimeZone)
throws XQException
implicitTimeZone - time zone to be setXQException - if the expression is in a closed state
void bindItem(javax.xml.namespace.QName varName,
XQItem value)
throws XQException
XQItem. In case of a mismatch between the static and dynamic types, an XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be bound, cannot be nullXQException - if (1) any of the arguments are null, (2) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (3) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, (4) the expression is in a closed state, or (5) the specified item is closed
void bindSequence(javax.xml.namespace.QName varName,
XQSequence value)
throws XQException
XQException is be raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be bound, cannot be nullXQException - if (1) any of the arguments are null, (2) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (3) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, (4) the expression is in a closed state, or (5) the specified sequence is closed
void bindObject(javax.xml.namespace.QName varName,
java.lang.Object value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nulltype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindBoolean(javax.xml.namespace.QName varName,
boolean value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindByte(javax.xml.namespace.QName varName,
byte value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindDouble(javax.xml.namespace.QName varName,
double value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluations.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindFloat(javax.xml.namespace.QName varName,
float value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluations.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindInt(javax.xml.namespace.QName varName,
int value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluations.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindLong(javax.xml.namespace.QName varName,
long value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindNode(javax.xml.namespace.QName varName,
Node value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be converted, cannot be nulltype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName or value argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state
void bindShort(javax.xml.namespace.QName varName,
short value,
XQItemType type)
throws XQException
XQException is raised either by this method, or during query evaluation.varName - the name of the external variable to bind to, cannot be nullvalue - the value to be convertedtype - the type of the value to be bound to the external variable. The default type of the value is used in case null is specifiedXQException - if (1) the varName argument is null, (2) the conversion of the value to an XDM instance failed, (3) in case of an XQPreparedExpression, the dynamic type of the bound value is not compatible with the static type of the variable, (4) in case of an XQPreparedExpression, the variable is not defined in the prolog of the expression, or (5) if the expression is in a closed state