Example 2: Stored procedures declared and defined in a package and package body

Suppose that the Oracle stored procedure is defined as:

CREATE OR REPLACE PACKAGE DEMO_PKG AS
type curtype is ref cursor;
PROCEDURE empquery_proc(p_job in varchar2, cur OUT DEMO_PKG.curtype);
end DEMO_PKG ;
CREATE OR REPLACE PACKAGE BODY DEMO_PKG AS
PROCEDURE empquery_proc(p_job in varchar2, cur OUT DEMO_PKG.curtype) AS
lcur DEMO_PKG.curtype;
begin
  open lcur for
  select * from EMP WHERE JOB = p_job;
  cur:=lcur;
end empquery_proc;
end DEMO_PKG;

To add the stored procedure into a JReport catalog, follow the steps below:

  1. Start JReport Designer and open an existing catalog.
  2. In the Data tab of the Catalog Browser, right-click the data source to which the stored procedure is to be added, then select Add User Defined Data Source.
  3. In the Name field of the Add User Defined Data Source dialog, specify a name for the UDS.
  4. In the Class Name field, input the UDS class jet.datasource.oracle.OracleProcedureUDS.
  5. In the Parameter box, enter one of the following:
  6. Click the OK button. The UDS class will then be added into the catalog.