Subject Re: [firebird-support] Commenting whole procedures
Author Helen Borrie
At 01:29 AM 22/05/2007, you wrote:
>How do you comment out the entire contents of a procedure, including
>the comments within the procedure itself?

Use /* */ comment markers to "comment out" a block. You can't embed
/* .. */ though: replace any internal comments with one-liners using
the -- marker, e.g.

/* This is my code.
This is some more code.
-- This is a line of comment
-- This is another line of comment
This is some more code
*/

./hb