Project

General

Profile

« Previous | Next » 

Revision 3780

Added by daigle about 16 years ago

Changes to remove ANT tokens for the turnkey install project

View differences:

DBQuery.java
309 309
        }
310 310
      }
311 311
      
312
      String xmlquery = null;
313
      String qformat = null;
312 314
      // get query and qformat
313
      String xmlquery = ((String[])params.get("query"))[0];
315
      try {
316
    	xmlquery = ((String[])params.get("query"))[0];
314 317

  
315
      logMetacat.info("SESSIONID: " + sessionid);
316
      logMetacat.info("xmlquery: " + xmlquery);
317
      String qformat = ((String[])params.get("qformat"))[0];
318
      logMetacat.info("qformat: " + qformat);
318
        logMetacat.info("SESSIONID: " + sessionid);
319
        logMetacat.info("xmlquery: " + xmlquery);
320
        qformat = ((String[])params.get("qformat"))[0];
321
        logMetacat.info("qformat: " + qformat);
322
      }
323
      catch (Exception ee)
324
      {
325
        logMetacat.error("Couldn't retrieve xmlquery or qformat value from "
326
                  +"params hashtable in DBQuery.findDocuments: "
327
                  + ee.getMessage()); 
328
      }
319 329
      // Get the XML query and covert it into a SQL statment
320 330
      QuerySpecification qspec = null;
321 331
      if ( xmlquery != null)

Also available in: Unified diff