Difference between revisions of "SET SOFTSEEK"

From Lianjapedia
Jump to: navigation, search
m (1 revision)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
 
Sets soft seeking of data
 
Sets soft seeking of data
 
  
 
==Syntax==
 
==Syntax==
 
SET SOFTSEEK ON | OFF | (<expL>)
 
SET SOFTSEEK ON | OFF | (<expL>)
 
  
 
==See Also==
 
==See Also==
[[FIND]], [[INDEX]], [[SEEK]], [[SET NEAR]]
+
[[INDEX]], [[SEEK]], [[SET NEAR]]
 
+
  
 
==Description==
 
==Description==
 
When SET SOFTSEEK is ON, searches of the table go to the record immediately following the potential location of the search key in the relevant file, if the key itself is not found.  SET SOFTSEEK is synonymous with SET NEAR.  Both SET NEAR and SET SOFTSEEK function when any valid expression is used with the SEEK command.  It has no effect on relationships.  By default, SOFTSEEK is OFF.
 
When SET SOFTSEEK is ON, searches of the table go to the record immediately following the potential location of the search key in the relevant file, if the key itself is not found.  SET SOFTSEEK is synonymous with SET NEAR.  Both SET NEAR and SET SOFTSEEK function when any valid expression is used with the SEEK command.  It has no effect on relationships.  By default, SOFTSEEK is OFF.
 
  
 
==Example==
 
==Example==
Line 35: Line 31:
 
</code>
 
</code>
  
 
==Products==
 
Recital Server, Recital
 
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Commands]]
 
[[Category:Commands]]

Revision as of 06:08, 10 February 2012

Purpose

Sets soft seeking of data

Syntax

SET SOFTSEEK ON | OFF | (<expL>)

See Also

INDEX, SEEK, SET NEAR

Description

When SET SOFTSEEK is ON, searches of the table go to the record immediately following the potential location of the search key in the relevant file, if the key itself is not found. SET SOFTSEEK is synonymous with SET NEAR. Both SET NEAR and SET SOFTSEEK function when any valid expression is used with the SEEK command. It has no effect on relationships. By default, SOFTSEEK is OFF.

Example

set softseek on
use demo
select state
seek "MB"
? found()
.F.
? eof()
.F.
? state
MD
set softseek off
seek "MB"
? found()
.F.
? eof()
.T.