What is FORWARD DECLARATION in Packages?
Answers were Sorted based on User's Feedback
Answer / kiran kumar
PL/SQL allows for a special subprogram declaration called a
forward declaration. It consists of the subprogram
specification in the package body terminated by a semicolon.
You can use forward declarations to do the following:
? Define subprograms in logical or alphabetical order.
? Define mutually recursive subprograms.(both calling each
other).
? Group subprograms in a package
Example of forward Declaration:
CREATE OR REPLACE PACKAGE BODY forward_pack
IS
PROCEDURE calc_rating(. . .); -- forward declaration
PROCEDURE award_bonus(. . .)
IS -- subprograms defined
BEGIN -- in alphabetical order
calc_rating(. . .);
. . .
END;
PROCEDURE calc_rating(. . .)
IS
BEGIN
. . .
END;
END forward_pack;
| Is This Answer Correct ? | 41 Yes | 3 No |
Answer / palaniraman balasubramanian
Special sub program unit declaration called forward
declaration, Consider below the example
In this pacakage, the first program unit is calling the
calc_rating but calc_rating is defined last in the package;
if we are not declared the fwd declaration then it will
raise the error While compiling this package. Package
compilation always happens top to bottom. For resolving
this compilation issue, you should declare the fwd
declaration.
CREATE OR REPLACE PACKAGE BODY forward_pack
IS
PROCEDURE calc_rating(. . .); -- forward
declaration
PROCEDURE award_bonus(. . .)
IS -- subprograms
defined
BEGIN -- in alphabetical
order
calc_rating(. . .);
. . .
END;
PROCEDURE calc_rating(. . .)
IS
BEGIN
. . .
END;
END forward_pack;
| Is This Answer Correct ? | 21 Yes | 4 No |
Answer / reddy
we have to declare an attribute before using in the program
called forward declaration
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / avinash
It is required in case of private members only not public
| Is This Answer Correct ? | 3 Yes | 3 No |
Answer / pradhyumn sharma
Forward Declaration is that we must declare the procedures
or functions before using them. If we dont declare then ti
raise error.
| Is This Answer Correct ? | 3 Yes | 4 No |
Answer / ranga
if you want define the procedure in existing local procedure
on that time you will define the procedures,along with the
parameters is called forward declaration.
| Is This Answer Correct ? | 6 Yes | 15 No |
What are the different components of soa suite?
can we pass bind variablein lexical parameter?
How to move the one file from one instance to another instance? And your scripts also?
Attribute data types?
What is SET-OF-BOOKS?
where u do setup of operating unit?
Suppose for report I have to parameters those are from_date and to_date, so to_date should be greater when compare to from_date, if we are giving to_date is lessthen it must shows some error how we will make?
how do you describe O2C along with tables
what are the pl/sql tables
What repots or concurrent program run to transfer data from Inventory to GL.
If the flat file is having the duplicate records in the interface how can you restrict while transferring the flat file data in to interface tables?
what are the difference between 11.5.7 and 11.5.9 in oracle apps