func pack() -> Bool

The function pack() removes records marked as deleted from a dbf file. It also removes not used blocks from memo file.
This operation cannot be undone.


{
    // your code
    print( "Reccount = " + String(dbf.recCount()) )
    dbf.pack()
    print( "Reccount = " + String(dbf.recCount()) )
    // your code
}