My employer uses an application which stores metadata about business cases in a master table and some 40 detail tables.
Currently, I maintain a package which reads from these tables and generates for each master record a file with HTML output.
My package body contains the following:
type output_text_type is table of varchar(32768);
function fA(mri in master_record_identifier_type)
return output_text_type
is
cursor cA(if1 master_record_identifier_type.if1%type, ...)
is
select tA.f1, tA.f2, ...
from tA
where tA.if1 = if1
...;
begin -- fA
...
for r in cA(mri.if1, mri.if2, ...) loop
<generate HTML using r.f1, r.rf2, mri.if1...>
end loop;
end fA;
... some 40 more function with the same structure ...
BTW, most cursors return less than 100 records (most often zero or one), so fetch ... bulk collect ... would not result in a performance gain.
Now we plan to exchange the business cases' metadata (and, of course, the documents themselves) with other organizations. To this end, we have to generate xml data structures with the -- in substance -- same content.
To fulfill this requirement, I plan to split my current package (influenced by the idea of the model-view-controller pattern) in a package pkg_cursors, a pkg_html and a (yet to be written) pkg_xml.
Alas, I found only a working solution by defining a record as in:
create or replace package pkg_cursors
as
type rA is record(
if1 tA.if1%type,
f1 tA.f1%type,
f2 tA.f2%type,
... a dozen more fields ...
);
cursor ca(master_record_identifier_type.if1%type, ...)
return rA;
...
This is unfortunate, for until now adding a column to a table resulted in an update of the cursor's select clause and adding the new column to the cursor-for-loop. From now on, I have a third place to consider: the record definition.
I experimented also with cursors in the package spec:
create package pkg_cursors
as
cursor cA(...) is
select <select-list>
from ... where ...
return cA%rowtype;
but I got compilation errors.
Thus, my question is: Is there a way to avoid the record definition for the cursor return argument?
Do you think there is a better way to split the package?
(Please apologize my language faults and the length of this question. Would my command of the English language be more solid, this question would possibly be shorter.)