Package org.apache.xindice.client.corba.db

Examples of org.apache.xindice.client.corba.db.Collection


      return result;
   }
  
   public XMLResource queryResult(String query) throws XMLDBException {
      Collection col = ((CollectionImpl) collection).getServerObject();

      XMLResource result = null;
      try {
         EncodedBuffer buffer = col.queryCollection("XPath", query, getNamespaces(), syms.getLastModified());

         if ( buffer.stamp != -1 ) {
            SymbolTable s = syms.getSymbols(buffer);
            result = new XMLResourceImpl("", collection, s, buffer.buf);
         }
View Full Code Here

TOP

Related Classes of org.apache.xindice.client.corba.db.Collection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.