Quote:
Originally posted by NoviceNo1
Hi,
I was going through the standard package provided by oracle
and i saw the following line.
pragma interface (c,plzcls);
Any info on " what is pragma interface ? " will be of great help.
Thanks in Advance.
|
I had no idea, but being nosy did a search. Nothing in the Oracle documentation I could see except the error message:
Quote:
PLS-00129 Pragma INTERFACE only supports C as its first argument
Cause: The first parameter passed to pragma INTERFACE specified a host language other than C. Currently, C is the only host language supported. The parameter might be misspelled, or the pragma syntax might be faulty (for example, a comma might be missing between two parameters).
Action: Check the spelling of the first parameter, which should be C, and make sure the proper syntax was used.
|
Then in Google I found this:
http://docs.rinet****:8083/Krikun/oun35fi.htm
So apparently it concerns defining a PL/SQL interface (called plzcls) to a C subprogram.