Adding User Defined Data Sources to a Catalog
Logi JReport Designer can access data from an external user defined data source, such as a Text file, or Excel file, which is not stored in a database, or when there is no JDBC driver available.
Below is a list of the sections covered in this topic:
- Adding a UDS to a Catalog
- Example 1: Adding a Flat File UDS
- Example 2: Adding an SQL Data Source UDS
- Example 3: Adding a Java Object Data Source UDS
- Example 4: Adding a Dynamic UDS
Adding a UDS to a Catalog
The general steps to add a UDS to a Logi JReport catalog are as follows:
- Create a catalog or open a catalog, then in the Catalog Manager, right-click the node of a data source and choose New User Defined Data Source from the shortcut menu.
If you want to add the UDS to a new data source in the catalog, select any of the existing catalog data source, select New Data Source on the Catalog Manager toolbar, then in the New Data source dialog, specify the name of the data source, select the User Defined connection type and select OK.
The New User Defined Data Source dialog appears.
- In the Name field, specify a name for the UDS as required.
- Provide the class name with package name in the Class Name field. You can also select Browse to find the class file. The class you enter must exist and can be found by Logi JReport Designer, which means the class should be in the class path of the system environment or set in ADDCLASSPATH of setenv.bat/setenv.sh. After filling in this field, the class name of the interface that the class implements will be displayed automatically behind The class implements:.
- Specify the parameter for the UDS in the Parameter box. The PARAMETER string must match the format defined in the UDS class.
You can reference parameters and constant level formulas predefined in the current catalog data source in the format @FieldName and the special field User Name as @username in the PARAMETER string. For example, if the PARAMETER string of a UDS is
SQL=select * from employee
, and you want to use the predefined parameter p_sql to replace the part after "=", then the PARAMETER string will beSQL=@p_sql
. - When parameters and formulas are referenced in the PARAMETER string, you can select the Edit Format button to edit the format of their values.
- Check the Specify Columns option to enable the column definitions list and add column definitions. If you don't specify the column definitions, Logi JReport will get them from the result set automatically.
- Name
The name of a column. It should have the same validation with a common table column. The default names for column definitions are ‘column1', ‘column2', and so on. - SQLType
The data type of the column. - Precision, Length, Scale, Radix
The default value for each SQL type. Select the cell and modify the value if necessary. - Nullable
Indicates whether the value of the column can be null. X stands for NoNulls, √ stands for Nullable and ? stands for Nullable Unknown.
- Name
- Select OK to add the UDS.
Example 1: Adding a Flat File UDS
There are three classes used in this example and their source code are AddressListUDS.java, AddressListResultSet.java and AddressListResultSetMetaData.java. The data file is AddressesList.txt. All these files are available in <install_root>\help\samples\APIUDS\txtUDS
.
AddressesList.txt is a plain text file which contains data information in a table:
Laurena Croft 34826 Atwood St. New York City NY 10004 USA...
Jonathan Hopkins 5062 Brandon Green Ave. Minneapolis MN 55402 USA...
Jeremy Miner 9283 Cherry Leaf Lane Palo Alto CA 94303 USA...
....
You can notice that each line sequentially records the name, address, state, region, zip code, country, e-mail address and other information.
If you use your own UDS classes, you must be sure that the class files can be found when running by making sure that the directory is classpath/package name. For this demo's UDS classes, the classes belong to a package named help. Copy the above necessary files to <install_root>\help
, and add the additional entry to the ADDCLASSPATH variable of the batch file setenv.bat in <install_root>\bin
.
Task 1: Compile and run the Address UDS
For example, on Windows, if you installed Logi JReport Designer into the default directory C:\JReport\Designer
,
- Copy the above necessary files to
C:\JReport\Designer\help
. - Compile the Java files.
javac -classpath "C:\JReport\Designer\lib\JREngine.jar" Address*.java
- Add the additional entry into the ADDCLASSPATH variable of setenv.bat in
C:\JReport\Designer\bin
.set ADDCLASSPATH=%JAVAHOME%\lib\tools.jar;C:\JReport\Designer\help;
Task 2: Add the Address UDS to a catalog
After compilation, you can now add the UDS to a Logi JReport catalog.
- Start Logi JReport Designer with the batch file you just modified.
- Open an existing catalog.
- In the Catalog Manager resource tree, right-click the data source to which the UDS is to be added, then select NewUser Defined Data Source from the shortcut menu.
- In the New User Defined Data Source dialog, enter the required information:
- Name: The name you want to use for identifying the UDS in Logi JReport. Here we use Address.
- Class Name: The class name of the UDS. You can type one in or select Browse to select a class file. Here we use help.AddressListUDS.
- Parameter: AddressesList.txt
- Select OK to add the UDS.
Example 2: Adding an SQL Data Source UDS
This is a fairly complex example, which executes an SQL statement and returns a result set through the JDBC API.
Below is the Java code for class definition:
import jet.datasource.*;
public class SQLDataSource implements JRUserDataSource {
// Define data.
public ResultSet getResultSet(String param)
throws JRUserDataSourceException {
// Method body.
}
/**
* Free the resources such as: Connection, Statement, ResultSet.
*/
public void releaseResultSet() throws JRUserDataSourceException {
// Method body.
}
}
The following explains the above code.
- The format of the String variable parameter is DRIVER=driver&URL=url&USER=user&PSWD=password&SQL=sql.
For example, we used HSQL DB as the data source, and
C:\JReport\Designer\Demo\db\JRDemo
as the hsql db path; "sa" as the user's name, "" as the password, andSelect * from authors
as the SQL string. The parameter string may be similar to:DRIVER="org.hsqldb.jdbcDriver"&URL="jdbc:hsqldb:C:\\JReport\\Designer\\Demo\\db\\JRDemo"&USER=sa&PSWD=&SQL=select * from employee
If you want to use predefined parameters in the Logi JReport catalog, you can input the parameter string as:
DRIVER="org.hsqldb.jdbcDriver"&URL="jdbc:hsqldb:C:\\JReport\\Designer\\Demo\\db\\JRDemo"&USER=@un&PSWD=&SQL=@sql
Where, @sql is a parameter predefined in the catalog, and its default value is "select * from employee".
Note: Every time when running, java.sql.Resultset must return the same metadata (UDS fields), including the number and order of fields, and the field properties such as column name, SQL type, precision, scale, nullable, currency, and array. - The method getResultSet() parses the parameter string, builds a connection to the URL, and then executes the SQL statement.
- The method releaseResultSet() releases the resource such as Connection, Statement, and ResultSet.
Task 1: Compile and run SQLDataSource
There is one class used in this example and its source code is SQLDataSource.java, which is available in <install_root>\help\samples\APIUDS\sqlUDS
. In this example, SQLDataSource will return the result set from demo hsql db. You should set up the HSQL DB path in the URL string and point it to the demo database at <install_root>\Demo\db\JRDemo
.
Copy SQLDataSource.java to <install_root>\help
, and compile it to generate SQLDataSource.class. Append the path <install_root>\help
to the ADDCLASSPATH variable of the batch file setenv.bat in <install_root>\bin
, so that SQLDataSource can be found at runtime.
Task 2: Add the SQLDataSource UDS to a catalog
After compilation, you can now add the UDS to a Logi JReport catalog.
- Start Logi JReport Designer with the batch file you just modified.
- Open an existing catalog.
- In the Catalog Manager resource tree, right-click the data source to which the UDS is to be added, then select NewUser Defined Data Source from the shortcut menu.
- In the New User Defined Data Source dialog, enter the required information.
If you check the Specify Columns option, the column definitions list will be enabled and you can add column definitions. If you don't specify column definitions, Logi JReport will obtain them from the result set automatically. Here, we will not specify column definitions. Instead, we will use the default ones from the ResultSet and the ResultSetMetaData.
Enter employees in the Name field and SQLDataSource in the Class Name field. In the Parameter box, enter:
DRIVER="org.hsqldb.jdbcDriver"&URL="jdbc:hsqldb:C:\\JReport\\Designer\\Demo\\db\\JRDemo"&USER=sa&PSWD=&SQL=select * from employee
Make sure that the five bold parts in the above line are capitalized.
- Select OK to add the UDS.
Example 3: Adding a Java Object Data Source UDS
The Logi JReport Designer UDS can use any Java object as a data source for you to create reports. To implement this function, Logi JReport Designer provides a class UDSForJavaBean, in which the method getResultSet() creates instances for the interface JavaBeanDataProvider, and then uses the method init() to initialize the data of the created instances.
Below is the Java code for class definition:
public class UDSForJavaBean implements JRUserDataSource
{
// Define data.
public ResultSet getResultSet(String param)
throws JRUserDataSourceException
{
// Method body.
}
/**
* Free the resources such as : Connection, Statement, ResultSet.
*/
public void releaseResultSet() throws JRUserDataSourceException
{
// Method body.
}
}
The interface JavaBeanDataProvider is defined as follows:
public interface JavaBeanDataProvider
{
public void init(String dataID, Properties initprops)
throws JavaBeanDataProviderException;
public Class getMetadataJavaBean()
throws ClassNotFoundException;
public Object next() throws JavaBeanDataProviderException;
public boolean requireDetails(String collectionPropName);
public int getMaxShareTimes(String collectionPropName);
public int getTimeoutForSubCollection(String collectionPropName);
public void exit()throws JavaBeanDataProviderException;
}
For examples of how to use the Java object data interface, Logi JReport provides you with two demos which are available in <install_root>\help\samples\APIUDS\javaUDS
.
- Demo 1: Using a Simple Java Object UDS
- Demo 2: Using a Java Object UDS with Multi-Levels of Collections
Before running the demos, you need to do the following:
- Copy all the content in
<install_root>\help\samples\APIUDS\javaUDS
to<install_root>\help\UDSForJavaBean
. You need to create the UDSForJavaBean directory. - Compile all the java files.
javac -classpath <install_root>\help\UDSForJavaBean;<install_root>\lib\JREngine.jar;<install_root>\lib\log4j-core-2.9.1.jar;<install_root>\lib\log4j-api-2.9.1.jar; <install_root>\help\UDSForJavaBean\jreport\uds\javabean\*.java
- Copy data.txt in
<install_root>\help\UDSForJavaBean
to<install_root>\bin
. - Add the path
<install_root>\help\UDSForJavaBean
in the ADDCLASSPATH variable in setenv.bat in the<install_root>\bin
directory.
In the second week of December 2021, a Log4j vulnerability was announced that may affect some customers using our products. Resolving/mitigating this issue is a high priority! We will continue to issue information to help you with this vulnerability. For more information, select this link: Statement on Log4j and Log4Net Vulnerabilities.
Demo 1: Using a Simple Java Object UDS
In this demo, a Java object named Person will be used as the data source, you can find the person.java file in <install_root>\help\UDSForJavaBean\jreport\uds\javabean\beans
. It is defined as follows:
public class Person implements Serializable
{
private String gender;
private String ssn;
private String emailAddress;
private Date birthDate;
private Long newbornWeight;
private YesNo isDataVerified;
private Name name;
private Address currentMailingAddress;
private Phone currentWorkPhone;n;
/**
* @return the birthDate.
*/
public Date getBirthDate()
{
return birthDate;
}
}
Similar to the code above, other attributes of the Person object are defined by other Java objects, such as currentMailingAddress which is defined by the Address class.
To create a report from the Person Java object:
- Make the necessary preparations.
- In Logi JReport Designer, open an existing catalog, then in the Catalog Manager, expand the data source to which the UDS is to be added.
- This demo uses generated data, in order to get the real collection of the data objects, create two parameters before importing the Person Java object as follows:
- Name: pUseFakeData (Specify whether to use generated data when running the report.)
Value Type: Boolean
Prompt Value: True - Name: pNumOfFakeData (Specify the number of data records to generate that will be shown when running the report.)
Value Type: Integer
Prompt Value: Any integer number
For details about how to create parameters, see Creating a Parameter.
- Name: pUseFakeData (Specify whether to use generated data when running the report.)
- Right-click the data source node, and select New User Defined Data Source from the shortcut menu.
- In the New User Defined Data Source dialog, enter Person in the Name text box.
- For the Class Name field, select the Browse button, go to
<install_root>\help\UDSForJavaBean\jreport\uds\javabean
, and then choose UDSForJavaBean.class, which will import the class jreport.uds.javabean.beans.Person with full class name. - In the Parameter box, type in the following string:
JavaBeanDS_DataProvider=jreport.uds.javabean.GenericBeanDataProvider&JavaBeanDS_RuntimeDataID=persions&GBeanProvider_BeanClsName=jreport.uds.javabean.beans.Person&GBeanProvider_UseFakeData=true&GBeanProvider_NumOfFakeData=@pNumOfFakeData&GBeanProvider_RptDataInitializer=jreport.uds.javabean.SubRptCollectionDataInitializer
All the highlighted names in the parameter string above are the key words for the information required by this UDS and related Java class. See the detailed explanation below:
- JavaBeanDS_DataProvider is used to specify the Java class which implements jreport.uds.javabean.JavaBeanDataProvider interface, and will return the list of required data objects at runtime. In this demo, it is a list of Person objects.
- JavaBeanDS_RuntimeDataID is a reserved value used as a key to get data objects from the DataCenter.
- GBeanProvider_* are required values for the special data provider, jreport.uds.javabean.GenericBeanDataProvider, which is specified by JavaBeanDS_DataProvider.
You can use this provider (jreport.uds.javabean.GenericBeanDataProvider) or create your own provider by implementing the interface jreport.uds.javabean.JavaBeanDataProvider.
- Select OK to add the UDS.
- Create a page report with a standard banded object in it which is based on this UDS.
- Select the View tab to run the report. In the Enter Parameter Values dialog, type 3 as the value of the parameter pNumOfFakeData, and select OK. Three records will be returned. However, the data you get now is the generated data, because in the parameter string of the UDS, you have specified the value of the key word GBeanProvider_UseFakeData to true.
- In order to get the real collection of data objects, the parameter pUseFakeData will be used to control the value of the key GBeanProvider_UseFakeData value dynamically as follows.
In the Catalog Manager, right-click the UDS Person and select Edit User Defined Data Source on the shortcut menu. In the Edit User Defined Data Source dialog, modify the value of GBeanProvider_UseFakeData to @pUseFakeData in the Parameter box.
- Run the report again and specify the value of pUseFakeData as false to get the real collection of data at runtime.
Note: The key word GBeanProvider_RptDataInitializer in the data provider jreport.uds.javabean.GenericBeanDataProvider is used to specify the Java class name which implements jreport.uds.javabean.RptDataInitializer interface. So if you are using the data provider jreport.uds.javabean.GenericBeanDataProvider, you just need to provide a class which implements jreport.uds.javabean.RptDataInitializer to return a collection, list, or array of the data objects according to different reports and parameters. Also, jreport.uds.javabean.GenericBeanDataProvider can recognize vector, collection and array of objects and retrieve the objects inside of the collection one by one.
Methods in the demo
- jreport.uds.javabean.GenericBeanDataProvider
jreport.uds.javabean.GenericBeanDataProvider implements the interface of jreport.uds.javabean.JavaBeanDataProvider by using the following methods:public void init(String dataID, Properties initprops) throws JavaBeanDataProviderException;
public Class getMetadataJavaBean() throws ClassNotFoundException;
public Object next() throws JavaBeanDataProviderException;
public boolean requireDetails(String collectionPropName);
public int getMaxShareTimes(String collectionPropName);
public void exit()throws JavaBeanDataProviderException;- init()
This method is called by UDSForJavaBean to ask the data provider to prepare the data collection/list by the given initProperties. Basically, the initProperties are the name and value pairs parsed from the UDS parameter string.
For example, the GenericBeanDataProvider will get the list of properties with the following keys:
JavaBeanDS_DataProvider
JavaBeanDS_RuntimeDataID
GBeanProvider_BeanClsName
GBeanProvider_UseFakeData
GBeanProvider_NumOfFakeData
GBeanProvider_RptDataInitializerThe values for those keys will be used by GenericBeanDataProvider to prepare the data collection. For example, if the value of GBeanProvider_UseFakeData is true, the GeneridBeanDataProvider will use the fake data, otherwise it will create an instance by the class name provided by GBeanProvider_RptDataInitializer and ask the data initializer object to return the collection of data objects.
- getMetadataJavaBean()
This method is called back from the UDS to get the bean class in order to construct the metadata for UDS. For GenericBeanDataProvider, the Java bean class in the collection is passed in by the key GBeanProvider_BeanClsName when you define this data source by UDS. - next()
This method is called back from the UDS to fetch the next data object as a record for the report at runtime. For GenericBeanDataProvider, the method init() constructs the data object collection, and the method next() is going to check if the collection is a Vector, Collection, or array of objects to determine automatically how to get the next object from the constructed collection. - exit()
This method is called back from the UDS when Logi JReport Engine closes the result set returned by UDS. For GenericBeanDataProvider, it will call the data initializer to close if the data is constructed by data initializer. - requireDetails()
This method is called back by the UDS to check if a certain collection attribute from Java bean needs to be displayed in the metadata. - getMaxShareTimes()
The sub-collection attribute from the Java data object could be shared among subreports. This is the call-back method from the UDS to determine the maximum number of times that a certain sub-collection object is going to be shared by the current report. If your report is trying to share the same sub-collection of a Java data object more than this specified value, you will get an error at runtime. However, if your report actually needs to be shared less than the number specified, the data will stay in the buffer without being cleaned.
- init()
- jreport.uds.javabean.RptDataInitializer
The implementation of this interface will be used by GenericBeanDataProvider to provide the collection of Java objects for different reports and parameters.The following methods need to be implemented for this interface:
public Object getDataCollection(Properties props)throws RptDataInitializerException;
public void close();- getDataCollection()
This method is called by GenericBeanDataProvider to return the data collection object. The input props are passed down from GenericBeanDataProvider and includes all the values passed down into the init() method of the GenericBeanDataProvider. - close()
This method is called back by GenericBeanDataProvider when exit() function is called there.
- getDataCollection()
Demo 2: Using a Java Object UDS with Multi-levels of Collections
Sometimes, the attributes of a Java object are defined by other lists/collections, such as the Java object SimpleBeanTest in <install_root>\help\UDSForJavaBean\jreport\uds\javabean\beans
. It is defined as follows:
public class SimpleBeanTest implements Serializable {
private String test;
private long l;
private int i;
private int[] intarray;
private Person[] persons;
private Collection addresses;
private Date dMyDate;
}
From the code above, you can see that the Java class SimpleTestBean contains an array of Persons, a collection of addresses and an array of Int values.
For this kind of Java object, Logi JReport Designer can create a report that gets records from the SimpleTestBean, but it cannot show the list of persons information in the same report. If you want to create such a report - each record comes from the SimpleBeanTest object, and for each record, display the list of persons information - you have to use a primary report and subreport to implement this function.
Task 1: Create the primary report
- Make the necessary preparations.
- In Logi JReport Designer, open an existing catalog, then in the Catalog Manager, expand the data source to which the UDS is to be added.
- Create a parameter as follows, which is used to specify the number of data records to generate that will be shown when running the report.
Name: pNumOfFakeData
Value Type: Integer
Prompt Value: Any integer number. Note that the parameter must have at least one value that is larger than 0, otherwise you will get exceptions when viewing reports. - Right-click the data source node and select New User Defined Data Source on the shortcut menu. The New User Defined Data Source dialog appears.
- Type SimpleTestBean in the Name text box.
- For the Class Name filed, select the Browse button, go to
<install_root>\help\UDSForJavaBean\jreport\uds\javabean
, and then choose UDSForJavaBean.class. The UDS class UDSForJavaBean.class will import the class jreport.uds.javabean.beans.SimpleTestBean with full class name. - In the Parameter box, type in the following string:
JavaBeanDS_DataProvider=jreport.uds.javabean.GenericBeanDataProvider&JavaBeanDS_RuntimeDataID=&GBeanProvider_BeanClsName=jreport.uds.javabean.beans.SimpleBeanTest&GBeanProvider_UseFakeData=true&GBeanProvider_NumOfFakeData=@pNumOfFakeData&GBeanProvider_FakeDateSubCollectionInfo=persons,jreport.uds.javabean.beans.Person&GBeanProvider_RptDataInitializer=&GBeanProvider_ListOfDetailProps=persons,1,30000
All the highlighted names in the parameter string above are the key words for the information required by this UDS and related Java class. See the detailed explanation below:
- GBeanProvider_ListOfDetailProps specifies the following items:
- The list of property names of sub-collections that will be displayed in the meta-data
- How many times that this report is going to share the sub-collection per main object
- The timeout for the shared data in the DataCenter in milliseconds (the default value is 1 minute).
In this demo, only the sub-collection property persons will be imported from the SimpleTestBean class, and the share time is 1. If you want to create another subreport using addresses, you have to specify the value for this keyword as follows:
=&GBeanProvider_ListOfDetailProps=persons,1,30000$addresses,1,30000
and different properties are separated by the symbol $.
- GBeanProvider_FakeDateSubCollectionInfo
The value of this key word is used to construct the fake data for SimpleTestBean collections. Each Java class can have multiple sub-collection objects, and it is allowed to not construct the values of these sub-collection objects if you do not want to use it. However, if you do not specify them here in this parameter string as<property name>,<property class name>$<property name>,<property class name>
, the fake data for those sub-collections will not be constructed, and problems will occur when running the report on fake data.
- GBeanProvider_ListOfDetailProps specifies the following items:
- Select OK and the UDS SimpleTestBean is added. In the Catalog Manager, you will see that persons appears in the resource tree in the SimpleTestBean node.
- Create a page report named MainRpt.cls, with a standard banded object in it as the primary report based on the UDS SimpleTestBean.
Task 2: Create the subreport
- Expand the data source in the catalog to which you want to add the UDS for the subreport.
- Create a parameter as follows, which is used to specify whether to use generated data when running the report.
Name: pUseFakeData
Value Type: Boolean
Prompt Value: True - Create another parameter named pRunTimeDataInfo of String type, which will be used when setting up the link between the primary report and the subreport.
Name: pRunTimeDataInfo
Value Type: String
Prompt Value: persons - Right-click the data source node and select New User Defined Data Source on the shortcut menu. The New User Defined Data Source dialog appears.
- Type PersonsAsSubRpt in the Name text box.
- For the Class Name text box, select the Browse button, go to
<install_root>\help\UDSForJavaBean\jreport\uds\javabean
, and then choose UDSForJavaBean.class. - In the Parameter box, type in the following string:
JavaBeanDS_DataProvider=jreport.uds.javabean.GenericBeanDataProvider&JavaBeanDS_RuntimeDataID=@pRunTimeDataInfo&GBeanProvider_BeanClsName=jreport.uds.javabean.beans.Person&GBeanProvider_UseFakeData=@pUseFakeData&GBeanProvider_NumOfFakeData=@pNumOfFakeData&GBeanProvider_RptDataInitializer=jreport.uds.javabean.SubRptCollectionDataInitializer
All the highlighted names in the parameter string above are the key words for the information required by this UDS and related Java class. See the detailed explanation below:
- JavaBeanDS_RuntimeDataID is defined to use a parameter which will be the link point from the subreport to the sub-collections in the primary report
- GBeanProvider_RptDataInitializer's value is jreport.uds.javabean.SubRptCollectionDataInitializer, which is our built-in data provider set up especially for the subreport to return the collection of data by referencing the sub-collection in the primary report. The referencing information is passed via the parameter value @pRunTimeDataInfo which will be used when we set up the link between the primary report and the subreport.
- The class name for GBeanProvider_BeanClsName is Person because the subreport will use the Person object.
- Select OK, and the UDS PersonsAsSubRpt is added.
- Create a page report named SubRpt.cls, with a table in it as the subreport based on the UDS PersonsAsSubRpt.
Task 3: Link the primary report and the subreport
- In the Catalog Manager, create a formula named NotUseFakeData to return false all the time, for example,
return false
. This formula will be passed into the subreport as the value of the parameter pUseFakeData in the subreport, so that when the subreport runs with the primary report, it will always use the data from the primary report instead of constructing the fake data itself. - Open MainRpt.cls, add a new detail panel into the report.
- Selected the newly added panel and select Insert > Subreport. When a box attached to your mouse pointer, select in the panel and the Subreport dialog is displayed.
- Select the Browse button, choose SubRpt.cls as the subreport, then in the Parameters tab, specify values for the parameters as follows:
Parameter Value pNumOfFakeData pNumOfFakeData pUseFakeData NotUseFakeData (gives a false value to the parameter) pRunTimeDataInfo persons (specifies to use the sub-collection persons of the primary report as the data source of the subreport at runtime) - Select OK to insert the subreport. For more information about using subreports, see Subreports.
- Run the primary report, and you will find that the corresponding persons information is displayed in the subreport.
- If you want to insert another subreport which shares the same sub-collection with SubRpt.cls, you should modify the value of the key word GBeanProvider_ListOfDetailProps in the primary report UDS parameter string to GBeanProvider_ListOfDetailProps=persons,2,30000. That changes the share amount of the persons property from 1 to 2.
Example 4: Adding a Dynamic UDS
Logi JReport Designer supports the Dynamic UDS feature. This feature improves performance by retrieving only the selected fields and not all the fields. At runtime, an option is provided for you to pick up the columns you want to see in the report. In this way, Logi JReport Designer generates a dynamic report according to your selection.
In this example, SQLDataSource is used to illustrate the usage and effect of the Dynamic UDS feature. Assume that you have generated SQLDataSource.class, start Logi JReport Designer with the modified batch file (for details, see Task 1: Compile and run SQLDataSource in Example 2).
- Open an existing catalog.
- In the Catalog Manager resource tree, expand the data source to which the UDS is to be added.
- Create a parameter with the following information:
- Name: sql
- Value Type: String
- Prompt Values:
Select * from employee
select salary from employee
select employeeid, employeeposition, hiredate, notes, salary, photo from employee
- Right-click the data source node, and then select New User Defined Data Source from the shortcut menu.
- In the New User Defined Data Source dialog, enter the following information:
- Name: employees
- Class Name: SQLDataSource
- Parameter:
DRIVER="org.hsqldb.jdbcDriver"&URL="jdbc:hsqldb:C:\\JReport\\Designer\\Demo\\db\\JRDemo"&USER=sa&PSWD=&SQL=@sql
- Select OK to add the UDS.
Next, we will create a page report directly on the UDS to test the Dynamic UDS feature. If you want to create web reports and library components on this UDS, you need to first create a business view using this UDS.
- Select Home/File > New > Page Report.
- In the Select Component for Page Report dialog, specify the report title and choose the Table (Group Left) component. Select OK.
- In the Data screen of the Table Wizard, choose the UDS employees from the User Defined node. Then, select Next.
- In the Display screen, add the fields EMPLOYEEID, employees_NOTES, employees_SALARY and HIREDATE to be displayed in the table, edit their display names to ID, Notes, Salary, Hire Date, and then select Next.
- In the Group screen, specify to group on the field EMPLOYEEPOSITION.
- Skip the Summary, Chart and filter screens, and in the Style screen, specify to display the report in the Classic style.
- Select Finish to create the report.
- Select the View tab to view the report. You will then be prompted to enter a parameter.
- Select select * from employee as the parameter, and you will see that data for all fields has been retrieved.
- Go back and run this report again. This time, choose Select salary from employee. You will notice that no groups are displayed and the group name changes to NULL. This is because only the field employees_SALARY has been selected this time. Logi JReport Designer will make no reference to the employees_Position column, on which the group is based.
Note: To make a dynamic UDS work, if the SQL statement at runtime doesn't include all the UDS columns, you need to make sure that none of the UDS columns' properties were edited, that is the Specify Columns option in the New User Defined Data Source dialog should be unchecked, otherwise exceptions will be produced when the SQL statement is used to generate a dynamic report from the UDS.