- (BOOL) zap;

The function zap() removes all records from a dbf file.
This operation cannot be undone.


{
    // your code
    NSLog( @"Reccount = %ld", [dbf recCount] );
    [dbf zap];
    NSLog( @"Reccount = %ld", [dbf recCount] );
    // your code
}