dbXML API

Uses of Class
com.dbxml.db.core.query.QueryException

Packages that use QueryException
com.dbxml.db.common.fulltext Defines the dbXML Full Text Indexer and a basic QueryResolver for Full Text retrieval. 
com.dbxml.db.common.query This package implements the common base functionality for Query Resolver implementations. 
com.dbxml.db.common.xpath This package implements the dbXML XPath query resolver. 
com.dbxml.db.common.xslt This package implements the dbXML XSLT query resolver. 
com.dbxml.db.common.xupdate Defines several classes for dbXML XUpdate query processing. 
com.dbxml.db.core.query Implements the dbXML QueryEngine and XPathQueryResolver. 
com.dbxml.db.core.query.helpers This is a helper package for common Query functionality. 
 

Uses of QueryException in com.dbxml.db.common.fulltext
 

Methods in com.dbxml.db.common.fulltext that throw QueryException
 boolean FullTextResultSet.next()
           
 int FullTextResultSet.getResultType()
           
 DocumentTable FullTextResultSet.getResult()
           
 QueryBase FullTextQueryResolver.createQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 ResultSet FullTextQuery.execute(Transaction tx)
           
 

Constructors in com.dbxml.db.common.fulltext that throw QueryException
FullTextQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 

Uses of QueryException in com.dbxml.db.common.query
 

Methods in com.dbxml.db.common.query that throw QueryException
 int ResultSetBase.getCount()
           
 Collection ResultSetBase.getResultCollection()
           
 Key ResultSetBase.getResultKey()
           
 Query QueryResolverBase.compileQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 ResultSet QueryResolverBase.query(Transaction tx, Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
abstract  QueryBase QueryResolverBase.createQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 

Constructors in com.dbxml.db.common.query that throw QueryException
QueryBase(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 

Uses of QueryException in com.dbxml.db.common.xpath
 

Methods in com.dbxml.db.common.xpath that throw QueryException
 QueryBase XPathQueryResolver.createQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 

Uses of QueryException in com.dbxml.db.common.xslt
 

Methods in com.dbxml.db.common.xslt that throw QueryException
 QueryBase XSLTQueryResolver.createQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 

Uses of QueryException in com.dbxml.db.common.xupdate
 

Methods in com.dbxml.db.common.xupdate that throw QueryException
 QueryBase XUpdateQueryResolver.createQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
           
 

Uses of QueryException in com.dbxml.db.core.query
 

Subclasses of QueryException in com.dbxml.db.core.query
 class CompilationException
          A CompilationException is thrown by a Query if for some reason, it can't compile the query being processed.
 class NotSupportedException
          A NotSupportedException is thrown by a Query if the QueryEngine doesn't support a specified operation.
 class ProcessingException
          A ProcessingException is thrown by a Query if for some reason, it fails to actually process the query request.
 class StyleNotFoundException
          A StyleNotFoundException is thrown by a Query if the QueryEngine can't resolve a specified style name.
 

Methods in com.dbxml.db.core.query that throw QueryException
 Collection ResultSet.getCollection()
          getCollection returns the top-level Collection context.
 Query ResultSet.getQuery()
          getQuery returns the Query instance that produced this result set.
 boolean ResultSet.next()
          next moves the cursor down one object from its current position.
 void ResultSet.close()
          close releases this ResultSet object's database resources immediately instead of waiting for this to happen when it is automatically closed.
 int ResultSet.getResultType()
          getResultType returns the type of the object that the ResultSet cursor currently points to.
 int ResultSet.getCount()
          getCount returns the number of records returned or modified by this query.
 DocumentTable ResultSet.getResult()
          getResult returns the result as a DocumentTable structure.
 Collection ResultSet.getResultCollection()
          getResultCollection returns the Collection context for the current result in the cursor.
 Key ResultSet.getResultKey()
          getResultKey return the Key for the current result in the cursor.
 Query QueryResolver.compileQuery(Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
          compileQuery compiles a Query against the specified Collection context and returns the compiled Query.
 ResultSet QueryResolver.query(Transaction tx, Collection context, java.lang.String query, NamespaceMap nsMap, Key[] keys)
          query compiles a Query against the specified Collection context and returns the query results.
 ResultSet QueryEngine.query(Transaction tx, Collection col, java.lang.String style, java.lang.String query, NamespaceMap nsMap, Key[] keys)
          query performs the specified query and returns a NodeSet with any possible results from that query.
 Query QueryEngine.compileQuery(Collection col, java.lang.String style, java.lang.String query, NamespaceMap nsMap, Key[] keys)
          compileQuery compiles a Query against the specified Collection context and returns the compiled Query.
 ResultSet Query.execute(Transaction tx)
          execute actually Executes the query and returns the resulting ResultSet.
 

Uses of QueryException in com.dbxml.db.core.query.helpers
 

Methods in com.dbxml.db.core.query.helpers that throw QueryException
 void ResultSetWrapper.toSAX(org.xml.sax.ContentHandler handler)
           
 DocumentTable ResultSetWrapper.toDocumentTable()
           
 org.w3c.dom.Document ResultSetWrapper.toDocument()
           
 java.lang.String ResultSetWrapper.toText()
           
static void ResultSetWrapper.toSAX(ResultSet rs, org.xml.sax.ContentHandler handler)
           
static DocumentTable ResultSetWrapper.toDocumentTable(ResultSet rs)
           
static org.w3c.dom.Document ResultSetWrapper.toDocument(ResultSet rs)
           
static java.lang.String ResultSetWrapper.toText(ResultSet rs)
           
 


dbXML API

Copyright (c) 2004 The dbXML Group