Stew Stryker
Member³
I just started seriously trying out the plsqldoc plug-in. I like it well enough that I'll start adding the custom tags to my code.
But the vast majority of our code puts the comments for a procedure after the header. For one reason, I've found that the line numbers from the compiler errors ignore any comment lines before the procedure/function/package header. So it makes it easier to debug with comments inside, like this comment inside a packaged procedure.
My question is, how can plsqldoc determine this correctly, instead of assuming comments are before the header? The way it works now, the above comment for a packaged procedure would be added to the procedure following the correct one.
Any thoughts? Or am I going to need to edit them all to get this to work?
Thanks,
But the vast majority of our code puts the comments for a procedure after the header. For one reason, I've found that the line numbers from the compiler errors ignore any comment lines before the procedure/function/package header. So it makes it easier to debug with comments inside, like this comment inside a packaged procedure.
Code:
PROCEDURE load_pf_group
IS
/* Purpose : Populate pf_group collection for DCF Parent table, store by parent's ID
Author : STEWART_L_STRYKER
Created : 08-Oct-2004 5:15:48 PM
CS-RCS Modification History: (Do NOT edit manually)
$Log: header.pkb,v $
Revision 1.8 2005-01-26 17:13:50-05 stewart_l_stryker
Added forward declaration
*/
etc...
Any thoughts? Or am I going to need to edit them all to get this to work?
Thanks,