Package com.dbxml.db.client.helpers

Examples of com.dbxml.db.client.helpers.TextResultSetClient


   public ResultSetClient queryCollection(String style, String query, Map nsMap) throws dbXMLException {
      try {
         Object[] params = new Object[]{style, query, nsMap};
         String content = executeString("queryCollection", params);
         return new TextResultSetClient(this, content, style, query);
      }
      catch ( dbXMLException e ) {
         throw e;
      }
      catch ( Exception e ) {
View Full Code Here


   public ResultSetClient queryDocument(String style, String query, Map nsMap, String key) throws dbXMLException {
      try {
         Object[] params = new Object[]{style, query, nsMap, key};
         String content = executeString("queryDocument", params);
         return new TextResultSetClient(this, content, style, query);
      }
      catch ( Exception e ) {
         throw new dbXMLException(e);
      }
   }
View Full Code Here

TOP

Related Classes of com.dbxml.db.client.helpers.TextResultSetClient

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.