Comment

Specifies an htmSQL comment that is not written to stdout

Syntax

{*your comments here}

Details

All text contained between {* and the closing brace } is considered an htmSQL comment and is not written to stdout. You can comment out single directives or entire sections with one pair of comment braces.
Note: HTML comments are considered text and are written to stdout along with the other text in the input file.

Example

The following example shows an entire query section that is commented out:
{*
{query datasrc="employee"}
   {sql}
      select * from empdb.employee
   {/sql}
   {eachrow}
      lastname: {&lname} firstname: {&fname}
   {/eachrow}
{/query}
}