plsqldoc and case

Vinny

Member²
Is there a way to control the case (upper vs. lower) of the documentation? Consider the following example in my package:

PROCEDURE ins( p_rec IN OUT NOCOPY application_users%ROWTYPE );

This shows up in the plsqldoc documentation as:
PROCEDURE INS(P_REC IN OUT NOCOPY APPLICATION_USERS%ROWTYPE)

Where all elements of the procedure were converted to upper case.

In the plsqldoc user guide, the following example:
procedure SelectRecords(p_Cursor in out t_DeptCursor,
p_Order varchar2 default null);

Converts to:
procedure SelectRecords(p_Cursor in out t_DeptCursor,
p_Order varchar2 default null);
(i.e. exactly the same).

Is there a configuration setting I am missing? The program units section correctly shows ins as does the label before PROCEDURE INS...

Thanks.
 
I forgot:

SQL> plugin plsqldoc about
PL/SQL Documentation (plsqldoc), Version 1.2.0
Allround Automations, Copyright (c) 2005
 
I assume you have enabled the "Format program unit declarations" option (Tools > plsqldoc > Configure)? In that case the current PL/SQL Beautifier Rules will be used to format the code. This may result in uppercase keywords and identifiers if these rules are specified as such.
 
Back
Top