plsqldoc


Hi, how are you? i have some questions, if you can anwser me, i'll be so happy...
Well, i'm try to use the plsqldoc plugin to plsql developer 8.0, the version of the plsqldoc is 1.2, i need know if can i comment the body of the struture and this show on the documentation, for exemple;
if i comment before the procedure in a package, the comment shows in the side of the name of the procedure, it's ok, but i need comment in the struture body, or be, inside of the procedure code, and i need this show in the documentation.

for exemple;

--comment that shows in documentation
procedure teste1 is

-- this comment doesn't show (I want this show in documentation)
Cursor c_payments(p_dt_proc Date, p_dt_proc_atu Date) Is
select * from employees;

end;

Thank's
 
Hi,

afaik, it's not possible. But since your prodedure test1 should be a blackbox for other developers there is no need for inside comments.

So the plsql-doc plugin is usfull for 'how to use' not for 'how it works'.
 
Back
Top