Roeland
Member³
PLSQL/Developer v7.1.5.1398
Example 1:
when your cursor is on "p_Input" => "-p_Input" is also highlighted
Now example 2:
when your cursor is on "p_Input" => "-p_Input" is NOT highlighted
Roeland
Example 1:
Code:
function TEST (p_Input in pls_integer)
return pls_integer is
begin
return -p_Input;
end ;
when your cursor is on "p_Input" => "-p_Input" is also highlighted
Now example 2:
Code:
function TEST (p_Input in pls_integer)
return pls_integer is
result pls_integer;
begin
result := -p_Input;
return result;
end ;
when your cursor is on "p_Input" => "-p_Input" is NOT highlighted
Roeland
Last edited: