DOC: Optimizable Expression Missing Left Parenthesis (135319)



The information in this article applies to:

  • Microsoft Visual FoxPro for Windows 3.0

This article was previously published under Q135319

SUMMARY

The first example of a Rushmore Optimizable expression following the Combining Complex Expressions table on Page 395 in the Developer's Guide is missing a beginning left parenthesis.

The expression currently is:
   FIRSTNAME = 'FRED' AND HIREDATE < {12/30/89}) ;
       OR (LASTNAME = '' AND HIREDATE > {12/30/88})
				
The expression should be:
   (FIRSTNAME = 'FRED' AND HIREDATE < {12/30/89}) ;
       OR (LASTNAME = '' AND HIREDATE >{12/30/88})
				

Modification Type:MajorLast Reviewed:2/15/2000
Keywords:kbdocfix KB135319