rsFieldExists

Checks to see if the named result set contains the specific field.

Type and Usage

Parameters

Takes two parameters:

  • The name of the result set to be searched.

  • The name of the field to be found.

Output

  • Returns TRUE if the field is found.

  • Returns FALSE if the field does not exist.

Example

<$if rsFieldExists("resultSet1", "FieldName1")$>
    code to execute if TRUE
<$endif$>