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.
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.