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
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