Package javax.xml.xquery
Interface XQExpression
-
- All Superinterfaces:
XQDynamicContext
- All Known Implementing Classes:
SaxonXQExpression
public interface XQExpression extends XQDynamicContext
This interface describes the execute immediate functionality for expressions. This object can be created from theXQConnection
and the execution can be done using theexecuteQuery()
orexecuteCommand()
method, passing in the XQuery expression.$var1
and$var2
are bound, but the query only defines$var1
as external, no error will be reported for the binding of$var2
. It will simply be ignored. When the expression is executed using theexecuteQuery
method, if the execution is successful, then anXQResultSequence
object is returned. TheXQResultSequence
object is tied to theXQExpression
from which it was prepared and is closed implicitly if thatXQExpression
is either closed or re-executed.XQExpression
object is dependent on theXQConnection
object from which it was created and is only valid for the duration of that object. Thus, if theXQConnection
object is closed then thisXQExpression
object will be implicitly closed and it can no longer be used.XQExpression
is closed anyXQResultSequence
object obtained from it is also implicitly closed.XQConnection conn = XQDatasource.getConnection(); XQExpression expr = conn.createExpression(); expr.bindInt(new QName("x"), 21, null); XQSequence result = expr.executeQuery( "declare variable $x as xs:integer external; for $i in $x return $i"); while (result.next()) { // process results ... } // Execute some other expression on the same object XQSequence result = expr.executeQuery("for $i in doc('foo.xml') return $i"); ... result.close(); // close the result expr.close(); conn.close();
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
Attempts to cancel the execution if both the XQuery engine and XQJ driver support aborting the execution of anXQExpression
.void
close()
Closes the expression object and release associated resources.void
executeCommand(java.io.Reader cmd)
Executes an implementation-defined command.void
executeCommand(java.lang.String cmd)
Executes an implementation-defined command.XQResultSequence
executeQuery(java.io.InputStream query)
Executes a query expression.XQResultSequence
executeQuery(java.io.Reader query)
Executes a query expression.XQResultSequence
executeQuery(java.lang.String query)
Executes a query expression.XQStaticContext
getStaticContext()
Gets anXQStaticContext
representing the values for all expression properties.boolean
isClosed()
Checks if the expression is in a closed state.-
Methods inherited from interface javax.xml.xquery.XQDynamicContext
bindAtomicValue, bindBoolean, bindByte, bindDocument, bindDocument, bindDocument, bindDocument, bindDocument, bindDouble, bindFloat, bindInt, bindItem, bindLong, bindNode, bindObject, bindSequence, bindShort, bindString, getImplicitTimeZone, setImplicitTimeZone
-
-
-
-
Method Detail
-
cancel
void cancel() throws XQException
Attempts to cancel the execution if both the XQuery engine and XQJ driver support aborting the execution of anXQExpression
. This method can be used by one thread to cancel anXQExpression
, that is being executed in another thread. If cancellation is not supported or the attempt to cancel the execution was not successful, the method returns without any error. If the cancellation is successful, anXQException
is thrown, to indicate that it has been aborted, byexecuteQuery
,executeCommand
or any method accessing theXQResultSequence
returned byexecuteQuery
. If applicable, any openXQResultSequence
andXQResultItem
objects will also be implicitly closed in this case.- Throws:
XQException
- if the expression is in a closed state
-
isClosed
boolean isClosed()
Checks if the expression is in a closed state.- Returns:
true
if the expression is in a closed state,false
otherwise
-
close
void close() throws XQException
Closes the expression object and release associated resources. Once the expression is closed, all methods on this object other than theclose
orisClosed
will raise exceptions. This also closes any result sequences obtained from this expression. Callingclose
on anXQExpression
object that is already closed has no effect.- Throws:
XQException
- if there are errors when closing the expression
-
executeCommand
void executeCommand(java.lang.String cmd) throws XQException
Executes an implementation-defined command. Calling this method implicitly closes any previous result sequence obtained from this expression.- Parameters:
cmd
- the input command as a string- Throws:
XQException
- if (1) there are errors when executing the command, or (2) the expression is in a closed state
-
executeCommand
void executeCommand(java.io.Reader cmd) throws XQException
Executes an implementation-defined command. Calling this method implicitly closes any previous result sequence obtained from this expression.- Parameters:
cmd
- the input command as a string reader- Throws:
XQException
- if (1) there are errors when executing the command, (2) the expression is in a closed state, or (3) the execution is cancelled
-
executeQuery
XQResultSequence executeQuery(java.lang.String query) throws XQException
Executes a query expression. This implicitly closes any previous result sequences obtained from this expression.- Parameters:
query
- the input query expression string. Cannot benull
- Returns:
- an
XQResultSequence
object containing the result of the query execution - Throws:
XQException
- if (1) there are errors when executing the query, (2) the expression is in a closed state, (3) the execution is cancelled, (4) the query parameter isnull
-
executeQuery
XQResultSequence executeQuery(java.io.Reader query) throws XQException
Executes a query expression. This implicitly closes any previous result sequences obtained from this expression.- Parameters:
query
- the input query expression as a reader object. Cannot benull
- Returns:
- an
XQResultSequence
object containing the result of the query execution - Throws:
XQException
- if (1) there are errors when executing the query, (2) the expression is in a closed state, (3) the execution is cancelled, or (4) the query parameter isnull
-
executeQuery
XQResultSequence executeQuery(java.io.InputStream query) throws XQException
Executes a query expression. This implicitly closes any previous result sequences obtained from this expression. If the query specifies a version declaration including an encoding, the XQJ implementation may try use this information to parse the query. In absence of the version declaration, the assumed encoding is implementation dependent.- Parameters:
query
- the input query expression as a input stream object. Cannot benull
- Returns:
- an
XQResultSequence
containing the result of the query execution - Throws:
XQException
- if (1) there are errors when executing the query, (2) the expression is in a closed state, (3) the execution is cancelled, or (4) the xquery parameter isnull
-
getStaticContext
XQStaticContext getStaticContext() throws XQException
Gets anXQStaticContext
representing the values for all expression properties. Note that these properties cannot be changed; in order to change, a newXQExpression
needs to be created.- Returns:
- an
XQStaticContext
representing the values for all expression properties - Throws:
XQException
- if the expression is in a closed state
-
-