$FUNCNAME$
  DBRECALL()
$CATEGORY$
  DATABASE
$SUMMARY$
   Reinstate a record marked for deletion
$LANG_RU$
    ,   .
$SYNTAX$
     DBRECALL() --> NIL
$LANG_RU$
     DBRECALL() --> NIL
$RETURNS$
     DBRECALL() always returns NIL.
$LANG_RU$
     DBRECALL()   NIL.
$DESCRIPTION$
     DBRECALL() causes the current record to be reinstated if it is marked
     for deletion.

     DBRECALL() performs the same function as the RECALL command.  For more
     information, refer to the DELETE and RECALL commands.
$LANG_RU$
     DBRECALL()   ,    
     .

     DBRECALL()    ,     RECALL.
           RECALL.
$EXAMPLES$
       The following example recalls a record if it is deleted and
	attempts to lock the record if successful:

	cLast := "Winston"
	DBUSEAREA( .T., "DBFNTX", "Sales", "Sales", .T. )
	DBSETINDEX( "LASTNAME" )
	//
	IF ( Sales->(DBSEEK(cLast)) )
	   IF Sales->( DELETED() )
	      IF Sales( RLOCK() )
		 Sales( DBRECALL() )
		 ? "Record recalled"
	      ELSE
		 "Unable to lock record..."
	      ENDIF
	   ENDIF
	ELSE
	   ? "Not found"
	ENDIF
$SEEALSO$
  DBDELETE()
$END$
