TurboRead

<< Click to Display Table of Contents >>

Navigation:  Apollo VCL Components > Apollo VCL Component Reference > TApolloTable > TApolloTable Properties >

TurboRead

Declaration

property TurboRead: WordBool;

Description

If True, TurboRead is active and index file locking will not occur. If False, index file locks will occur during Seeks and other index pointer repositioning.

Delphi Example

if ApTbl.TurboRead = True then

 ShowMessage( 'TurboRead is ON!' ) 

else

 ShowMessage( 'TurboRead is OFF!' ); 

C++Builder Example

if (ApTbl->TurboRead)

 ShowMessage( "TurboRead is ON!" ); 

else

 ShowMessage( "TurboRead is OFF!" ); 

See Also

SetTurboRead