BtServer:Found Access

 

<< Click to Display Table of Contents >>

Navigation:  Server Classes > BtServer Class >

 

BtServer:Found Access

 

Previous pageReturn to chapter overviewNext page

 

Purpose

 

 

Determine if exact match was found from BtServer:Seek()

 

 

 

Prototype

 

 

ACCESS Found CLASS BtServer

 

 

 

Return

 

 

LOGIC                True if Searched with Softseek and an Exact match was found from the most recent BtServer:Seek()

 

 

 

Description

 

 

Works similarly to the VO FOUND() function. If Searching withoud softseek then oServer:FOUND is the same as .NOT. oServer:EOF

 

 

 

Example(s)

 

 

 oServer:SEEK('SMY',.T.)

 ? oServer:EOF           // Not EOF

 .F.

 ? oServer:FOUND         // Not found

 .F.

                         // Record pointer at

                         // next greater value.

                         // Display last_name

 ? oServer:FieldGet('last_name') // for current record.

 THOMAS

 

 

 

 

See Also

 

 

BtServer, BtServer:Seek(), BtServer:EOF, BtServer:SEEK()