MartinF
Member²
Hi,
we are working with the beautifier option and we noticed something about the parameters tab in the beautifier options. We actually set the format to "One parameter per line". This is working fine with most parameters except if those are parameter of cursor. Actually it put all parameters on the same line.
Exemple:
I expect to get this as result:
But actually it`s not the case, all cursor parameters stay on the same line.
Regards,
Martin
we are working with the beautifier option and we noticed something about the parameters tab in the beautifier options. We actually set the format to "One parameter per line". This is working fine with most parameters except if those are parameter of cursor. Actually it put all parameters on the same line.
Exemple:
Code:
cursor cur_c1(p_param1 in number, p_par2 in varchar2) is
select p_param1
,p_par2
from dual;
I expect to get this as result:
Code:
cursor cur_c1(p_param1 in number
,p_par2 in varchar2) is
select p_param1
,p_par2
from dual;
But actually it`s not the case, all cursor parameters stay on the same line.
Regards,
Martin