rsFindRowPrimary

Searches the first column of a ResultSet for a matching value.

Type and Usage

Parameters

Takes two parameters:

  • The first parameter is the name of a ResultSet whose first column is to be searched.

  • The second parameter is the value to be searched for.

Output

  • Returns TRUE if the specified value is found in the first column of the specified ResultSet.

  • Returns FALSE if the specified value is not found.

Example

Searches the first column of resultSet1 until a value matching value1 is found.

<$rsFindRowPrimary("resultSet1","value1")$>