To use stored procedures in Oracle with JReport Designer, JReport developed a user data source class. The class is named OracleProcedureUDS, and can be found in the package jet.datasource.oracle.
In the Add User Defined Data Source dialog, the format of the PARAMETER string is in either of the following. You can choose one according to your requirement. When the stored procedures used in Oracle have different names, either of the following two formats can be used. However, when the stored procedures used in Oracle have same names, you can only use the second PARAMETER string.
DRIVER=drivername&URL=url&USER=user&PSWD=password&OWNER=owner&PROCNAME=procname&SQL=sql&REFCURSORINDEX=index&PARAMVALUE=value1,value2,value3&OUTPARAMINDEX=index1,index2
DRIVER=drivername&URL=url&USER=user&PSWD=password&OWNER=owner&PROCNAME=procname&SQL=sql&REFCURSORINDEX=index&INPARAMVALUE=value1,datatype1,index1;value2,datatye2,index2;…Valuen,datatypen,indexn&OUTPARAM=datatype1,index1;… datatypen,indexn
Note: When you use the second PARAMETER string listed above, the parameter value only contains value. You need to add the data type and index of the parameter value in the user defined data source class.
Substitute the words in lower case according to your requirements.
Where:
For example, if the PARAMVALUE part of the PARAMETER string is as follows:
...&PARAMVALUE=10\\,20\\,30,30\\,10\\,23,,a,
Then the parameter values will be parsed as follows:
ParaValue1 =10,20,30
ParaValue2 =30,10,23
ParaValue3 =null
ParaValue4 =a
ParaValue5 =null
Or, instead of typing the parameter values one by one in the above PARAMETER string, you can also use the parameters and constant level formulas in the catalog to substitute the parameter values, then '\\' will automatically be added to escape the comma. And it is recommended to use the parameters and constant level formulas to control one input parameter value of the oracle stored procedure. For example,
...&PARAMVALUE=@PARAM1,30\\,10\\,23,,a,
In this case, in the Create/Edit Parameter dialog, the prompt value of parameter PARAM1 must be typed as follows:
10,20,30
DRIVER=oracle.jdbc.driver.OracleDriver&URL="jdbc:oracle:thin:@dbserver:1521:orcl" &USER=scott&PSWD=tiger&OWNER=SCOTT&PROCNAME=getAuthor&SQL={call getAuthor(?, ?, ?}&REFCURSORINDEX=2&PARAMVALUE=0.5,1999-7-10
If you want to change the connection dynamically, you can define the parameters in this way:
oracle.jdbc.driver.OracleDriver=@driver, jdbc:oracle:thin:@dbserver:1521:orcl=@url, scott=@user,
The PARAMETER string will then be either of the following:
DRIVER=@driver&URL=@url&USER=@user&PSWD=tiger&OWNER=SCOTT&PROCNAME=getAuthor&SQL={call getAuthor(?, ?,?}&REFCURSORINDEX=1&PARAMVALUE=0.5,1999-7-10
DRIVER=@driver&URL=@url&USER=@user&PSWD=tiger&OWNER=SCOTT&PROCNAME=getAuthor&SQL={call getAuthor(?, ?,?}&REFCURSORINDEX=1&INPARAMVALUE=0.5,number,2;1999-7-10,date,3
You can change the parameter dynamically to suit your requirements.
Note: When your PARAMETER string contains characters such as: At sign(@), ':', double quotation mark('"'), or other strings that do not need to be parsed by JReport, you can use a pair of double quotation marks to quote them. For example, your PARAMETER string may be:
jdbc:oracle:thin:@204.177.148.30:1521:orcl
Here, @ is a character used by the URL. If you add this PARAMETER string into a catalog, JReport will regard 204 as the name of a parameter in the catalog. The correct form is:
"jdbc:oracle:thin:@204.177.148.30:1521:orcl"