top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Oracle: What is a forward declaration? What is its use?

0 votes
658 views
Oracle: What is a forward declaration? What is its use?
posted Jan 21, 2015 by Vidhya Sagar

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

PL/SQL requires that you declare an identifier before using it. Therefore, you must declare a subprogram before calling it. This declaration at the start of a subprogram is called forward declaration. A forward declaration consists of a subprogram specification terminated by a semicolon.

answer Jan 22, 2015 by Arun Gowda
...