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

net.sf.jasperreports.engine.query.JRQueryExecuter Maven / Gradle / Ivy

There is a newer version: 6.21.2
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2022 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.query;

import net.sf.jasperreports.engine.JRDataSource;
import net.sf.jasperreports.engine.JRException;


/**
 * Query executer interface.
 * 

* An implementation of this interface is created when the input data of a report/dataset * is specified by a query. *

* The implementation will run the query and create a {@link net.sf.jasperreports.engine.JRDataSource JRDataSource} * from the result. *

* The query executers would usually be initialized by a {@link net.sf.jasperreports.engine.query.QueryExecuterFactory QueryExecuterFactory} * with the query and the parameter values. * * @author Lucian Chirita ([email protected]) * @see net.sf.jasperreports.engine.query.QueryExecuterFactory */ public interface JRQueryExecuter { /** * Executes the query and creates a {@link JRDataSource JRDataSource} out of the result. * * @return a {@link JRDataSource JRDataSource} wrapping the query execution result. * @throws JRException */ public JRDataSource createDatasource() throws JRException; /** * Closes resources kept open during the data source iteration. *

* This method is called after the report is filled or the dataset is iterated. * If a resource is not needed after the data source has been created, it should be * released at the end of {@link #createDatasource() createDatasource}. */ public void close(); /** * Cancels the query if it's currently running. *

* This method will be called from a different thread if the client decides to * cancel the filling process. * * @return true if and only if the query was running and it has been canceled * @throws JRException */ public boolean cancelQuery() throws JRException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy