Page History
...
1 (True) if all the rows exist, or 0 (False) if any of the rows do not exist.
See also
Example
Code Block |
---|
* Check to see if 'nj' is a record in the STATE table. The first call will return True, * the second call will return False. Declare Function RowExists a = RowExists('STATE', 'nj') KeepCaseFlag = 1 b = RowExists('STATE', 'nj', KeepCaseFlag) |