Package net.sf.saxon.javax.xml.xquery
Interface XQPreparedExpression
-
- All Superinterfaces:
XQDynamicContext
- All Known Implementing Classes:
SaxonXQPreparedExpression
public interface XQPreparedExpression extends XQDynamicContext
XQJ interfaces reconstructed from version 0.5 documentation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancel()
void
clearWarnings()
void
close()
XQResultSequence
executeQuery()
javax.xml.namespace.QName[]
getAllExternalVariables()
int
getQueryTimeout()
XQSequenceType
getStaticResultType()
XQSequenceType
getStaticVariableType(javax.xml.namespace.QName name)
javax.xml.namespace.QName[]
getUnboundExternalVariables()
XQWarning
getWarnings()
boolean
isClosed()
void
setQueryTimeout(int seconds)
-
Methods inherited from interface net.sf.saxon.javax.xml.xquery.XQDynamicContext
bindAtomicValue, bindBoolean, bindByte, bindContextItem, bindDocument, bindDouble, bindFloat, bindInt, bindItem, bindLong, bindNode, bindObject, bindSequence, bindShort, getImplicitTimeZone, setImplicitTimeZone
-
-
-
-
Method Detail
-
cancel
void cancel() throws XQException
- Throws:
XQException
-
clearWarnings
void clearWarnings() throws XQException
- Throws:
XQException
-
close
void close() throws XQException
- Throws:
XQException
-
executeQuery
XQResultSequence executeQuery() throws XQException
- Throws:
XQException
-
getAllExternalVariables
javax.xml.namespace.QName[] getAllExternalVariables() throws XQException
- Throws:
XQException
-
getUnboundExternalVariables
javax.xml.namespace.QName[] getUnboundExternalVariables() throws XQException
- Throws:
XQException
-
getQueryTimeout
int getQueryTimeout() throws XQException
- Throws:
XQException
-
getStaticResultType
XQSequenceType getStaticResultType() throws XQException
- Throws:
XQException
-
getStaticVariableType
XQSequenceType getStaticVariableType(javax.xml.namespace.QName name) throws XQException
- Throws:
XQException
-
getWarnings
XQWarning getWarnings() throws XQException
- Throws:
XQException
-
isClosed
boolean isClosed()
-
setQueryTimeout
void setQueryTimeout(int seconds) throws XQException
- Throws:
XQException
-
-