procedure Tfrm_Borrow.AllRec;是什么意思?谢谢!

解决方案 »

  1.   

    RECALL CommandUns records ed for deletion in the selected table.SyntaxRECALL
      [Scope] [FOR lExpression1] [WHILE lExpression2]
      [NOOPTIMIZE]ArgumentsScopeSpecifies a range of records to recall. Only the records that fall within the range specified are recalled. The scope clauses are: ALL, NEXT nRecords, RECORD nRecordNumber, and REST. For more information on scope clauses, see the Scope Clauses and Overview of the Language online topics.The default scope for RECALL is the current record (NEXT 1).FOR lExpression1Specifies that only the records for which lExpression1 evaluates to true (.T.) are recalled. This option allows you to filter out undesired records.Rushmore optimizes a RECALL FOR if lExpression1 is an optimizable expression. For best performance, use an optimizable expression in the FOR clause.For more information, see SET OPTIMIZE and "Understanding Rushmore Technology" in Chapter 15, Optimizing Applications, in the Programmer's Guide.WHILE lExpression2Specifies a condition whereby records are recalled for as long as lExpression2 evaluates to true (.T.).NOOPTIMIZEPrevents Rushmore optimization of RECALLFor more information, see SET OPTIMIZE and "Understanding Rushmore Technology" in Chapter 15, Optimizing Applications, in the Programmer's Guide.ResYou can use RECALL to recover records, provided you have not issued PACK or ZAP.Caution   Once a file has been packed, all records ed for deletion are gone forever.You can  records for deletion by issuing DELETE or DELETE – SQL, or by choosing Delete Records from the Table menu when a Browse or Edit window is active. You can recall records by issuing RECALL, or by choosing Recall Records from the Record menu when a Browse or Edit window is active.
    --------------------------------------------------------------------------------
    Send feedback to MSDN.Look here for MSDN Online resources.