Using dynamic queries

Before you can use dynamic queries, you are required to first make some preparations.

  1. Compile the Java file that you write and append the path of the compiled Java file with a valid path to the ADDCLASSPATH variable of setenv.bat.
  2. Set the value of the connection property SQL Statement Creator.

    The dynamic query interface is set as a property in the JDBC connection object in a catalog.

    In JReport Designer, launch the Catalog Browser, expand the Relational node, select the JDBC connection, right-click it and select Properties from the shortcut menu to display the properties of the connection. You will then see the SQL Statement Creator property, which is used to set the real class name of the dynamic query object.

    Here are a couple of examples:

    Notes:

    • Binding parameters is not supported by this feature.
    • By default, you are not permitted to change the property values in the Catalog Browser. To make the property values editable, on the Catalog Browser toolbar, click the Options button . In the Options dialog, select Catalog in the Category box and uncheck forbid editing data object properties. Then, go back to the Catalog Browser, and highlight the column name that you want to edit to change or set the property values for.
  3. Set the value of the query property Enable SQL Statement Creator.

    In the Catalog Browser, in the Properties sheet of a highlighted query, there is a property named Enable SQL Statement Creator, which indicates whether or not the query uses the dynamic query interface to get the result set. When it is set to true, the query can be re-generated at runtime using the dynamic query interface.

An illustrative example

You are provided with a demo program, SQLStmtCreatorImpl.java in <install_root>\help\samples\APIDynamicQuery, which implements the dynamic query interface. This demo is for changing the table name of the query sent to the database. Specifically, when you run the report, if you enter 1 as the tableIndex parameter, the query will dynamically change to Customers1. If you do not enter anything, you will get the result set from the Customers table.

The following example explains how to compile the required files and use dynamic queries in a report:

  1. Compile SQLStmtCreatorImpl.java.

    Assume that JReport Designer has been installed in C:\JReport\Designer, and the class files of the MappingNameFinder.java are in C:\JReport\Designer\help\samples\APIDynamicQuery:

    javac -classpath c:\jreport\designer\lib\JREngine.jar;c:\jreport\designer\help\samples\APIDynamicQuery SQLStmtCreatorImpl.java

    Note: To compile SQLStmtCreatorImpl.java you will need another file MappingNameFinder.java in <install_root>\help\samples\APIDynamicQuery.

  2. Modify the batch file setenv.bat in <install_root>\bin by appending the SQLStmtCreatorImpl.java path into the batch file's ADDCLASSPATH variable:

    set ADDCLASSPATH=%JAVAHOME%\lib\tools.jar;C:\jreport\designer\help\samples\APIDynamicQuery;

  3. Start up JReport Designer.
  4. Click File > Open. In the Open Report dialog, click the Browse button to open the catalog file SampleComponents.cat in <install_root>\Demo\Reports\SampleComponents, then open the sample report BandedObjectReport.cls.
  5. Launch the Catalog Browser, expand the Data Source 1 node, right-click the Parameters node, click Add Parameter on the shortcut menu, then create a type-in parameter of String type named tableIndex (leave the other settings to their default).
  6. Expand the Relational node in Data Source 1, and then select the JDBC connection.
  7. Unfold the property list of the connection by clicking the Expand button on the toolbar, then set the value of the SQL Statement Creator property as SQLStmtCreatorImpl;@tableIndex. The parameter tableIndex is used to specify which table is to be selected at runtime.
  8. Select the query QueryForBandedObject in the Catalog Browser, and set the value of its property Enable SQL Statement Creator to true.
  9. Save the catalog and view this report.
  10. The Enter Parameter Values dialog appears. When you input 1 as the value of the tableIndex, the report will run on the table Customers1, and when you input nothing as the value of the tableIndex, the report will run on the table Customers.