Package javax.xml.xquery
Interface XQPreparedExpression
-
- All Superinterfaces:
XQDynamicContext
- All Known Implementing Classes:
SaxonXQPreparedExpression
public interface XQPreparedExpression extends XQDynamicContext
This interface describes an expression that can be prepared for multiple subsequent executions. A prepared expression can be created from the connection.The preparation of the expression does the static analysis of the expression using the static context information.
getStaticResultType
method.executeQuery
method, if the execution is successful, then anXQResultSequence
object is returned. TheXQResultSequence
object is tied to theXQPreparedExpression
from which it was prepared and is closed implicitly if that expression is either closed or if re-executed.XQPreparedExpression
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 thisXQPreparedExpression
object will be implicitly closed and it can no longer be used.XQPreparedExpression
is closed anyXQResultSequence
object obtained from it is also implicitly closed.XQConnection conn = XQDataSource.getconnection(); XQPreparedExpression expr = conn.prepareExpression ("for $i in (1) return 'abc' "); // get the sequence type out.. This would be something like xs:string * XQSequenceType type = expr.getStaticResultType(); XQSequence result1 = expr.executeQuery(); // process the result.. result1.next(); System.out.println(" First result1 "+ result1.getAtomicValue()); XQResultSequence result2 = expr.executeQuery(); // result1 is implicitly closed // recommended to close the result sequences explicitly. // process the result.. while (result2.next()) System.out.println(" result is "+ result2.getAtomicValue()); result2.close(); expr.close(); // closing expression implicitly closes all result sequence or // items obtained from this expression. conn.close(); // closing connections will close expressions and results.
-
-
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 anXQPreparedExpression
.void
close()
Closes the expression object and release all resources associated with this prepared expression.XQResultSequence
executeQuery()
Executes the prepared query expression.javax.xml.namespace.QName[]
getAllExternalVariables()
Retrieves all the external variables defined in the prolog of the prepared expression.javax.xml.namespace.QName[]
getAllUnboundExternalVariables()
Retrieves the names of all unbound external variables.XQStaticContext
getStaticContext()
Gets anXQStaticContext
representing the values for all expression properties.XQSequenceType
getStaticResultType()
Gets the static type information of the result sequence.XQSequenceType
getStaticVariableType(javax.xml.namespace.QName name)
Retrieves the static type of a given external variable.boolean
isClosed()
Checks if the prepared expression 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 anXQPreparedExpression
. This method can be used by one thread to cancel anXQPreparedExpression
, 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 prepared expression is in a closed state
-
isClosed
boolean isClosed()
Checks if the prepared expression in a closed state.- Returns:
true
if the prepared expression is in a closed state,false
otherwise.
-
close
void close() throws XQException
Closes the expression object and release all resources associated with this prepared expression. This also closes any result sequences obtained from this expression. Once the expression is closed, all methods on this object other than theclose
orisClosed
will raise exceptions. Calling close on anXQExpression
object that is already closed has no effect.- Throws:
XQException
- if there are errors when closing the expression
-
executeQuery
XQResultSequence executeQuery() throws XQException
Executes the prepared query expression. Calling this method implicitly closes any previous result sequence obtained from this expression.- Returns:
- the xquery sequence object containing the result of the query execution
- Throws:
XQException
- if (1) there are errors when executing the prepared expression, (2) the prepared expression is in a closed state, or (3) the query execution is cancelled
-
getAllExternalVariables
javax.xml.namespace.QName[] getAllExternalVariables() throws XQException
Retrieves all the external variables defined in the prolog of the prepared expression.- Returns:
- an array of
QName
objects for all the external variables defined in the prolog of a prepared expression. Empty array if there are no external variables present. - Throws:
XQException
- if the prepared expression is in a closed state
-
getAllUnboundExternalVariables
javax.xml.namespace.QName[] getAllUnboundExternalVariables() throws XQException
Retrieves the names of all unbound external variables.- Returns:
- the
QName
for all the external variables defined in the prolog of a prepared expression that are yet to be bound with a value. If there are no such variables an empty array is returned - Throws:
XQException
- if the prepared expression is in a closed state
-
getStaticResultType
XQSequenceType getStaticResultType() throws XQException
Gets the static type information of the result sequence. If an implementation does not do static typing of the query, then this method must return anXQSequenceType
object corresponding to the XQuery sequence typeitem()*
.- Returns:
XQSequenceType
containing the static result information.- Throws:
XQException
- if the prepared expression is in a closed state
-
getStaticVariableType
XQSequenceType getStaticVariableType(javax.xml.namespace.QName name) throws XQException
Retrieves the static type of a given external variable.- Parameters:
name
- the name of the external variable- Returns:
- the static type information of the variable as defined in the prolog of the prepared expression
- Throws:
XQException
- if (1) the variable does not exist in the static context of the expression, or (2) the sequence is in a closed state, or (3) thename
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 newXQPreparedExpression
needs to be created.- Returns:
- an
XQStaticContext
representing the values for all expression properties - Throws:
XQException
- if the expression is in a closed state
-
-