PLDOC support or how can I add comments between FUNCTION keyword and FunctionName

Discussion of open issues, suggestions and bugs regarding database management and development tools for Oracle
Post Reply
Pesse
Posts: 1
Joined: Thu 06 Apr 2017 09:00

PLDOC support or how can I add comments between FUNCTION keyword and FunctionName

Post by Pesse » Thu 06 Apr 2017 09:05

Hi guys,

I'm pretty new to dbForge and wonder if it's possible to add a comment between the FUNCTION Keyword and the actual function Name. Example:

Code: Select all

CREATE OR REPLACE FUNCTION 
/** This is a test PLDOC comment
*/
myFunction ( i_input INTEGER ) RETURN ...
Unfortunately this method is the only way you can add PLDOC valid comments to a Schema function or procedure. Everytime I try to do this it's getting eliminated by dbForge IDE during compilation.

Thanks in advance for any replies.
Pesse

alexa

Re: PLDOC support or how can I add comments between FUNCTION keyword and FunctionName

Post by alexa » Fri 07 Apr 2017 14:37

In dbForge, you can specify comments in the BEGIN...END block instead.

Post Reply