Greetings,
When we create PL/SQL modules, we always split the "CREATE OR REPLACE" and "object_type object_name" into different lines. For example:
After compiling the code and closing the program window, when we open the module (my_procedure) for editing (right-click the object in the browser and choose Edit), the program window combines the lines into one
It's a minor thing, but as we try to keep up with standards for code formatting, we have to modify this line every time we edit the database code.
Could you please modify the Program Window to add a "new line" character after the "CREATE OR REPLACE" when it extracts the code from the database?
Thank you in advance.
Regards,
Ivan C.
When we create PL/SQL modules, we always split the "CREATE OR REPLACE" and "object_type object_name" into different lines. For example:
Code:
CREATE OR REPLACE
PROCEDURE my_procedure
...
Code:
CREATE OR REPLACE PROCEDURE my_procedure
...
Could you please modify the Program Window to add a "new line" character after the "CREATE OR REPLACE" when it extracts the code from the database?
Thank you in advance.
Regards,
Ivan C.