Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pl/SQL Package Inline Documentation

I am attempting to more fully document our database packages as an API. What we would like is something like JavaDocs for PL/SQL. I have seen a couple tools out there (pldoc, plsqldoc) but would like to know from people who use them how they compare.

like image 560
Adam Hawkes Avatar asked Aug 26 '09 17:08

Adam Hawkes


1 Answers

I have used PlDoc and find it really good. I haven't used any other tools so can't compare. I found PlDoc did the basics well. I wanted some more advanced features so I built our own tool that added extensions to PlDoc for more tags. Also I don't just do documentation with it I also generate our package headers using some PlDoc tags (e.g @private).

I recommend you try PlDoc then tweak whatever doesn't meet your needs. It doesn't take that long to set up so its not a huge time investment to try it.

like image 97
darreljnz Avatar answered Sep 22 '22 12:09

darreljnz