All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jasperreports.engine.JRQuery Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2019 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.engine;


/**
 * Represents a query used for generation of report data.
 * 

* Based on the query language, query executer implementations are used to retrieve the data and * create a {@link net.sf.jasperreports.engine.JRDataSource JRDataSource} to be used by the filling process. *

* When using the default SQL connection data source, * an SQL query must also be provided for JasperReports to automatically retrieve the data. * For SQL queries, a very important aspect is that column names in the result set obtained from the query must match the field names * defined in the report template. * * @author Teodor Danciu ([email protected]) * @see net.sf.jasperreports.engine.query.QueryExecuterFactory */ public interface JRQuery extends JRCloneable { /** * */ public JRQueryChunk[] getChunks(); /** * Returns the query string. */ public String getText(); /** * Returns the query language. *

* Based on the query language, a corresponding * {@link net.sf.jasperreports.engine.query.QueryExecuterFactory QueryExecuterFactory} is used to create * a {@link net.sf.jasperreports.engine.query.JRQueryExecuter JRQueryExecuter} instance. The query executer * is responsible for executing the query and creating a {@link JRDataSource JRDataSource} from the result. * * @return the query language */ public String getLanguage(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy