Difference between revisions of "CONTINUE"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Resume locate search
 
Resume locate search
 
  
 
==Syntax==
 
==Syntax==
 
CONTINUE
 
CONTINUE
 
  
 
==See Also==
 
==See Also==
[[FIND]], [[FOUND()]], [[LOCATE]], [[SCAN]], [[SEEK]], [[SET FILTER]]  
+
[[FOUND()]], [[LOCATE]], [[SCAN]], [[SEEK]], [[SET FILTER]]  
 
+
  
 
==Description==
 
==Description==
The CONTINUE command searches for the next record which meets the criteria as specified in the LOCATE command.  If the search was successful, the FOUND() function will return .T., otherwise .F..  For large searches, indexing the table and using SEEK or FIND is recommended.
+
The CONTINUE command searches for the next record which meets the criteria as specified in the LOCATE command.  If the search was successful, the FOUND() function will return .T., otherwise .F..  For large searches, indexing the table and using SEEK is recommended.
 
+
  
 
==Example==
 
==Example==
Line 25: Line 21:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]
 
[[Category:Table Basics]]
 
[[Category:Table Basics]]
 
[[Category:Table Basics Commands]]
 
[[Category:Table Basics Commands]]

Revision as of 10:18, 10 February 2012

Purpose

Resume locate search

Syntax

CONTINUE

See Also

FOUND(), LOCATE, SCAN, SEEK, SET FILTER

Description

The CONTINUE command searches for the next record which meets the criteria as specified in the LOCATE command. If the search was successful, the FOUND() function will return .T., otherwise .F.. For large searches, indexing the table and using SEEK is recommended.

Example

use patrons
locate for event = "OPERA"
do while found()
    display name, event
    continue
enddo