oracle.xquery
Class XQueryResultSet

java.lang.Object
  |
  +--oracle.xquery.XQueryResultSet

public class XQueryResultSet
extends java.lang.Object

PreparedXQuery - This class provides the context for executing XQueries


Inner Class Summary
static class XQueryResultSet.XQueryResultType
           
 
Method Summary
 boolean getBoolean()
          gets the boolean value for the last fetch
 float getFloat()
          gets the float value for the last fetch
 int getInt()
          gets the int value for the last fetch
 oracle.xml.parser.v2.XMLNode getNode()
          get the node value for the last fetch
 int getResultType()
           
 java.lang.String getString()
          gets the string value for the last fetch
 boolean next()
          fetch the next object
 void printResult(java.io.PrintStream out, XQMesg msg)
           
 boolean wasNull()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getResultType

public int getResultType()

printResult

public void printResult(java.io.PrintStream out,
                        XQMesg msg)
                 throws java.lang.Exception

next

public boolean next()
fetch the next object

wasNull

public boolean wasNull()

getNode

public oracle.xml.parser.v2.XMLNode getNode()
get the node value for the last fetch

getBoolean

public boolean getBoolean()
gets the boolean value for the last fetch

getInt

public int getInt()
gets the int value for the last fetch

getFloat

public float getFloat()
gets the float value for the last fetch

getString

public java.lang.String getString()
gets the string value for the last fetch