Note | This command is defined in a header file and will be preprocessed by the X# preprocessor to a function call. If you disable the standard header (-nostddefs) files then this command will not be available. If you tell the compiler to use a different standard header file (-stddef ) then this command may also be not available |
Moves the record pointer through the currently selected table and executes a block of commands for each record that meets the specified conditions.
SCAN [NOOPTIMIZE] [Scope] [FOR lExpression1] [WHILE lExpression2]
[Commands]
[LOOP]
[EXIT]
ENDSCAN
NOOPTIMIZE | Prevents Rushmore Query Optimization of SCAN. For more information, see SET OPTIMIZE Command and Using Rushmore Query Optimization to Speed Data Access. |
Scope | Specifies a range of records to be scanned. Only the records within the range are scanned. The scope clauses are: ALL, NEXT nRecords, RECORD nRecordNumber, and REST. For more information on scope clauses, see the Scope Clauses online topic. The default scope for SCAN is all records (ALL). |
FOR lExpression1 | Executes commands only for records for which lExpression1 evaluates to true (.T.). Including the FOR clause lets you filter out records you don't want scanned. Rushmore optimizes a query created with SCAN ... FOR if lExpression1 is an optimizable expression. For best performance, use an optimizable expression in the FOR clause. For more information, see SET OPTIMIZE Command and Using Rushmore Query Optimization to Speed Data Access. |
WHILE lExpression2 | Specifies a condition whereby the commands are executed for as long as lExpression2 evaluates to true (.T.). |
Commands | Specifies the Visual FoxPro commands to be executed. |
LOOP | Returns control directly back to SCAN. LOOP can be placed anywhere between SCAN and ENDSCAN. |
EXIT | Transfers program control from within the SCAN ... ENDSCAN loop to the first command following ENDSCAN. EXIT can be placed anywhere between SCAN and ENDSCAN. |
ENDSCAN | Indicates the end of the SCAN procedure. |
You can place comments after ENDSCAN on the same line. The comments are ignored during program compilation and execution.
SCAN ... ENDSCAN ensures that, upon reaching ENDSCAN, Visual FoxPro reselects the table that was current when the SCAN ... ENDSCAN loop began.
The following example uses a SCAN ... ENDSCAN loop to display all the companies in Sweden.
USE customer && Opens Customer table
CLEAR
SCAN FOR UPPER(country) = 'SWEDEN'
? contact, company, city
ENDSCAN
XSharp.RT.DLL