Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>recall</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
RECALL


Syntax:     RECALL [<scope>] [FOR <condition>] [WHILE <condition>]

Purpose:    To reinstate records in the current database file that have
            been marked for deletion.

Options:    Scope: The <scope> is the portion of the current
            database file to RECALL.  The default scope is the current
            record.  If a condition is specified, the default scope
            becomes ALL.

            Condition: The FOR clause specifies the conditional set
            of records to RECALL within the given scope.  The WHILE
            clause specifies the set of records meeting the condition
            from the current record until the condition fails.

Usage:      If DELETED is ON, RECALL only reinstates the current record
            or a specific record if you specify the RECORD scope.

Network:    In a network environment, RECALLing the current record
            requires an RLOCK().  RECALLing several records requires an
            FLOCK() or EXCLUSIVE USE of the current database file.

Library:    CLIPPER.LIB


----------------------------------- Example --------------------------------

   USE Sales

   DELETE RECORD 4
   ? DELETED()             && Results: .T.

   RECALL
   ? DELETED()             && Results: .F.


See Also: DELETE PACK SET DELETED ZAP DELETED()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson