com.softwareag.xqj.extension
Interface TXQPreparedExpression

All Superinterfaces:
javax.xml.xquery.XQDynamicContext, javax.xml.xquery.XQPreparedExpression

public interface TXQPreparedExpression
extends javax.xml.xquery.XQPreparedExpression

Tamino specific extensions for Prepared Expression.


Method Summary
 void bindInt(javax.xml.namespace.QName qname, int intValue, javax.xml.xquery.XQItemType xqitemtype)
          Binds the integer value of specific ItemType to the query
 void bindString(javax.xml.namespace.QName qname, java.lang.String s, javax.xml.xquery.XQItemType xqitemtype)
          Binds the input string of specific ItemType to the query
 
Methods inherited from interface javax.xml.xquery.XQPreparedExpression
cancel, close, executeQuery, getAllExternalVariables, getAllUnboundExternalVariables, getStaticContext, getStaticResultType, getStaticVariableType, isClosed
 
Methods inherited from interface javax.xml.xquery.XQDynamicContext
bindAtomicValue, bindBoolean, bindByte, bindDocument, bindDocument, bindDocument, bindDocument, bindDocument, bindDouble, bindFloat, bindItem, bindLong, bindNode, bindObject, bindSequence, bindShort, getImplicitTimeZone, setImplicitTimeZone
 

Method Detail

bindString

void bindString(javax.xml.namespace.QName qname,
                java.lang.String s,
                javax.xml.xquery.XQItemType xqitemtype)
                throws javax.xml.xquery.XQException
Binds the input string of specific ItemType to the query

Specified by:
bindString in interface javax.xml.xquery.XQDynamicContext
Parameters:
qname - - QName
s - - String to be bound
xqitemtype - - Item Type
Throws:
javax.xml.xquery.XQException

bindInt

void bindInt(javax.xml.namespace.QName qname,
             int intValue,
             javax.xml.xquery.XQItemType xqitemtype)
             throws javax.xml.xquery.XQException
Binds the integer value of specific ItemType to the query

Specified by:
bindInt in interface javax.xml.xquery.XQDynamicContext
Parameters:
qname - - QName
intValue - - integer value to be bound
xqitemtype - - Item Type
Throws:
javax.xml.xquery.XQException