Would like to have the first parameter after the first ( instead of an empty line. Also the keyword IS I would like on the other line. And line out the INs and OUTs.
Also having the RETURN part of a function on another line would be great.
Right now:
But would like to have:
Also having the RETURN part of a function on another line would be great.
Right now:
Code:
PROCEDURE blah
(
p_id IN OUT NUMBER
,p_d IN NUMBER
,p_d OUT NUMBER
) IS
Code:
FUNCTION test RETURN NUMBER IS
Code:
PROCEDURE blah
( p_id IN OUT NUMBER
, p_d IN NUMBER
, p_d OUT NUMBER
)
IS
Code:
FUNCTION test
RETURN NUMBER
IS