Quoted /* and */ not escaped

Ed Delaney

Member²
I have the following in my plsql program:

INSERT INTO guraddl VALUES (session_id, genutil.incr, '/*');

INSERT INTO guraddl VALUES (session_id, genutil.incr, '*/');

The '/*' is interpreted as /* in the program window. Likewise the '*/' is treated as */.
If it's quoted, it should be treated as a literal value. Thanks. ed
 
Works fine for me. Have you chaged the standard plsql.kwf that is provided with PL/SQL Developer? If not, can you let me know your PL/SQL Developer version?
 
Back
Top