Can someone help me put my pl/sql procedure in a package? I\'ve tried and I\'m struggling with it:
This is what I have, for my package specification:
CRE
Your header and body procedure definitions don't match
In the header, you have:
PROCEDURE get_films(fname VARCHAR2);
Whereas in the body:
PROCEDURE get_films(fname IN film.title%type,
r_date OUT film.release_date%type, dur OUT film.duration%type)
You probably just need to update the header definition with the two additional OUT params?
To Summarize
film.title%type
) with the base type (VARCHAR2
). Choose one or the other.