Database Interaction with PL/SQL: Introduction to Sub-programs - More sub-programs
(Page 5 of 5 )
How many sub-programs can we write within a single program? The answer is AS MANY AS YOU CAN. You can declare and define any number of sub-programs within a single main program. There is no limit at all. Let us consider the following example:
declare
x number := 30;
y number := 40;
procedure displaySum as
a number := 10;
b number := 20;
begin
dbms_output.put_line('Sum of numbers :' || (a+b+x+y) );
end;
procedure displayProduct as
a number := 10;
b number := 20;
begin
dbms_output.put_line('Product of numbers :' || (a*b*x*y) );
end;
procedure displayAvg as
a number := 10;
b number := 20;
begin
dbms_output.put_line('Avg of numbers :' || ((a+b+x+y)/4) );
end;
begin
displaySum;
displayProduct;
displayAvg;
end;
Even though the above program is bit lengthy, the concept is very simple. I just used three sub-programs, namely ‘displaySum’, ‘displayProduct’ and ‘displayAvg’. Each of those sub-programs has its own declarations of variables and logic. And I am calling all the sub-programs from within the main program.
There is no particular order you can call a sub-program from within the main program. You can call sub-programs in any order without regard to the order (of the sub-programs) you defined.
| DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware. |