Comments in CLPPlus

CLPPlus has the ability for you to include comments in your scripts and commands.

In CLPPlus, comments can span one ore more lines. Comments that are contained on a single line start with # or --. Comments that span multiple lines are enclosed in /* and */.

Examples

The following examples show both single and multiple line comments.

SQL> # This is a single line comment
SQL>
SQL> -- This is also a single line comment
SQL>
SQL> /* This comment
spans
multiple lines. */
SQL>