As informative as possible :)
Maaz Anjum, October 26, 2009 - 10:40 am UTC
Ah, I was typing away without realizing that I had a bug in the code but thank you for pointing it out!
I thought at some point explicit cursors were more efficient than implicit ones but after the latter releases (after 8i), it made no difference so I kept with the earlier.
Thanks again for the helpful information!!
October 26, 2009 - 2:30 pm UTC
... I thought at some point explicit cursors were more efficient than implicit ones
...
that MIGHT have been true sometime in the late 1980's (that is not a typo, that is 1980's) with really old releases of Forms.
but otherwise, in plsql code - no, it was never true.
RE: implicit vs explicit cursors
Duke Ganote, October 26, 2009 - 10:47 am UTC
PLS-00503
Sokrates, October 26, 2009 - 11:58 am UTC
...
IF p_parameter_i IS NULL
THEN
RETURN;
END IF;
...
wouldn't compile
PLS-00503: RETURN <value> statement required for this return from function
October 26, 2009 - 3:18 pm UTC
so, what do you want to return... seems like an obvious fix?
Maaz Anjum, October 26, 2009 - 12:28 pm UTC
Silly typo, thanks for the correction!