Oracle SQL Developer (I'm using v3.2) has a feature called "DB Doc", which generates documentation for database objects. I mostly want to use it to generate documentation for my stored procedures, functions, packages and types. However, I can't find any documentation for it, describing what syntax I should use.
I have worked out that I should use a /* ... */
comment on the line(s) immediately above my procedure/whatever, and (by borrowing from JavaDoc) I have successfully used @param
and @returns
statements, but I'm not sure what else I can use. For example, are there fields for author, version, data modified, etc.?
I've done numerous searches of this site, Google, and Oracle's documentation, to no avail!
pldoc
documentation seems to include the elements you've already found. Seems odd though that there doesn't seem to be any reference (or credit) topldoc
, so maybe it was just inspiration rather than included; and even odder than Oracle haven't documented the functionality at all. – Alex Poole Oct 17 '12 at 9:10