खोज…


टिप्पणियों

DELETE स्टेटमेंट मास स्टोरेज से रिकॉर्ड DELETE करता है। कुछ कंपाइलर्स DELETE स्टेटमेंट को FILE क्लॉज के साथ इस्तेमाल करने की अनुमति देते हैं, ताकि FD नाम (किसी भी संबंधित इंडेक्सिंग संरचनाओं के साथ जो डेटाबेस प्रबंधन इंजन द्वारा उपयोग में आ सकते हैं) को हटा दें।

COBOL DELETE स्टेटमेंट वाक्यविन्यास आरेख

प्राथमिक कुंजी फ़ील्ड में एक रिकॉर्ड, कुंजी हटाएं

   identification division.
   program-id. deleting.

   environment division.
   configuration section.

   input-output section.
   file-control.
       select optional indexed-file
       assign to "indexed-file.dat"
       status is indexing-status
       organization is indexed
       access mode is dynamic
       record key is keyfield
       alternate record key is altkey with duplicates
       .

   ...

   procedure division.

   move "abcdef" to keyfield

   *> Delete a record by index
   delete indexed-file record
      invalid key
          display "No delete of " keyfield end-display
      not invalid key
          display "Record " keyfield " removed" end-display
   end-delete

   perform check-delete-status

   ...


Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow