Enhancement Request - Rename Variable,etc

Sachin

Member³
It would be nice if PLD can automatically prompt for replacing all instance of a variable if I rename it. I have seen this behavior in VS.NET.

e.g. if I rename:

v_nw_var varchar2(10);

to v_new_var - the editor can prompt me to replace all occurences in the current scope.

Thanks,
 
PL/SQL Developer already does this, just without the prompt. Renaming a variable inside a function also replaces all uses of that variable inside the function.
 
Back
Top