I have version 8.0.4.1514.
If I compile this code using the program window, the ampersand is missing in the compiled code. It does not happen if I compile it using the Command window. I tried disabling all of my plug-ins and removing my login.sql and afterconnect.sql scripts.
A co-worker has the same version of PL/SQL Developer, and he can compile this code correctly on the same database. So, I'm thinking it could be a preference, but so far, I haven't figured it out. Any ideas?
If I compile this code using the program window, the ampersand is missing in the compiled code. It does not happen if I compile it using the Command window. I tried disabling all of my plug-ins and removing my login.sql and afterconnect.sql scripts.
A co-worker has the same version of PL/SQL Developer, and he can compile this code correctly on the same database. So, I'm thinking it could be a preference, but so far, I haven't figured it out. Any ideas?
Code:
CREATE OR REPLACE PACKAGE zper_apple AUTHID DEFINER AS
PROCEDURE main;
END zper_apple;
/
CREATE OR REPLACE PACKAGE BODY zper_apple AS
c_ohsu_gre CONSTANT VARCHAR(34) := 'Oregon Health & Science University';
PROCEDURE main IS
BEGIN
NULL;
END main;
END zper_apple;
/
Last edited: