Beautifier don't work

gma

Member
Hello,

some users(not all) of PL/SQR Dev 6.0.5.931 have a problem whith the beautifuler. The french message is "L'embelliseur PL/SQL n'a pas pu analyser le texte" (beautifuler can't analyse the texte ?).
The same users have a empty contents of code ("Table des mati
 
All program have the problem for these users. But in my PL/SQL Dev(and some others) the same program with the same database work correctly.

example :
CREATE OR REPLACE PACKAGE Bridge AS

PROCEDURE p_bridge_full (
i_Target_Lot IN INTEGER,
i_Label IN INTEGER

);

PROCEDURE p_bridge_partial (
i_Target_Lot IN INTEGER,
i_Target_Project IN INTEGER,
i_Target_Table IN INTEGER,
i_Label IN INTEGER

);

END Bridge;
 
That would mean the problem is a client-side issue, not related to the actual PL/SQL code.

To obtain some more diagnostic information, can you modify the shortcut and add the debug parameter? For example:

"C:\Program Files\PLSQL Developer\plsqldev.exe" debug

Reproduce the problem and send me the debug.txt file that is generated in the PL/SQL Developer directory.
 
Back
Top