Package net.sf.jasperreports.engine.query

Examples of net.sf.jasperreports.engine.query.JRQueryExecuter


    return MDX_BUILTIN_PARAMETERS;
  }

  public JRQueryExecuter createQueryExecuter(JRDataset dataset, Map parameters) throws JRException
  {
    JRQueryExecuter queryExecuter;
    if (getParameterValue(parameters, JRMondrianQueryExecuterFactory.PARAMETER_MONDRIAN_CONNECTION) != null)
    {
      queryExecuter = new JRMondrianQueryExecuter(dataset, parameters);
    }
    else if (getParameterValue(parameters, JRXmlaQueryExecuterFactory.PARAMETER_XMLA_URL) != null)
View Full Code Here

TOP

Related Classes of net.sf.jasperreports.engine.query.JRQueryExecuter

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.