Problems with code contents by using precompiler variables

fro

Member
Hi,
in older project we use a precompiler wich dissolves any keywords and so i've a problem with the code contents in the program window.
Example:

create or replace
package body pkg_test
as

procedure test(p_var in varchar2)
begin
do_anything();
exception
WHEN_OTHERS; --precompiler variable to dissolve
end;

begin
trace := get_trace();
end;

Is there any possibility?

Thanx
 
Back
Top