A JRXML report uses a query to select the data to be returned from the data source. You can define the query in the JRXML itself,, but you can also create and save queries in the repository. A query saved in the repository can be re-used by multiple JasperReports. See the sample queries in the /SuperMart Demo/Common folder in the repository.
Reusing a query enables you to adapt reports to different audiences. The query returns the same data from the same data source every time, but each report presents the data in a different way. Also, separating the query from the JRXML makes it easier to maintain large numbers of reports when the data source changes and the query needs to be updated.
See the JasperReports Server User Guide for complete instructions on using JRXML reports. For another means of adapting reports to different audiences, refer to the chapter on Domains in that guide.
You can also use queries to populate list input controls, as described in Query-based Input Controls and Cascading Input Controls.
To create a reusable query:
| 1. | Login as an administrator. |
| 2. | Click View > Repository and locate the folder for the query. If you installed the sample data, the suggested folder is Input Data Types. |
| 3. | Right click the folder's name and select Add Resource > Query from the context menu. The Add Query page appears. |
|
Add Query - Name the Query Page |
| 4. | Enter a name for the query. Resource ID is filled in automatically, and the description is optional Click Next. The Link a Data Source page appears. |
|
Add Query - Link a Data Source Page |
| 5. | Select the data source and click Next. Your options are: |
| • | Do not link a data source. If no data source is associated with the query, the server uses the data source associated with the report that references the query. |
| • | Create a new data source. You can define a local data source within this query resource that's not accessible to any other resource. This new data source overrides any data source specified in reports that use the query. |
| • | Select data source from repository. This creates a reference to a data source in the repository. The data source you select overrides any data source specified in reports that use the query. |
Click Next. the Define the Query page appears.
|
Add Query - Define the Query Page |
| 6. | Select a Query Language. For this example choose SQL. |
The query language Domain (sl) is selected when opening Domain-based queries created in versions of the server before 3.7. It is used only for backward compatibility and should not be selected for new Domain-based queries.
| 7. | Enter the following test in the Query String field: |
By default, JasperReports Server supports SQL, HQL (Hibernate), HiveQL (Hadoop-Hive), MongoDB, and Domain queries, while JasperReports supports several more (such as EJBQL, xPath and MDX). However, JasperReports Server can support additional query languages if a query executor implementation is properly-configured for each additional language when the server is deployed.
Bean Data Sources. Another option to add new types of data sources to the server to extend the reach of the JasperReports Server platform.. Custom data sources are described in the JasperReports Server Ultimate Guide.
Recommended Comments
There are no comments to display.