Character / in templates

El

Member²
Hello:

I want to make a template of the following type for scripts

BEGIN
NULL;
END;
/

BEGIN
NULL;
END;
/

but, when I use the template, put the following in the editor.

BEGIN
NULL;
END;
BEGIN
NULL;
END;

Is there any way to enter the character /?

Thanks,
 
Hello!

PL/SQL developer Version 14.0.6.1988 (64 bit) and also trying with Version 15.0.0.2047 Beta (64 bit)

template looks like:

SQL:
BEGIN
NULL;
END;
//

BEGIN
NULL;
END;
//

------------
Result is without 2nd slash:
------------

SQL:
BEGIN
NULL;
END;
/

BEGIN
NULL;
END;

-----------------------------------

Problem with the last slash! How to fix it?
 
We'll fix it. As a workaround you can add an additional slash:

Code:
BEGIN
NULL;
END;
//

BEGIN
NULL;
END;
//
/
 
Back
Top