Suche…


Bemerkungen

Die START Anweisung bietet die Möglichkeit, einen Lesevorgang in einer Datei für den nachfolgenden sequentiellen Abruf (mit Schlüssel) zu positionieren.

Syntaxdiagramm für START-Anweisungen

Das Schlüsselrelational kann Folgendes umfassen (ist jedoch nicht darauf beschränkt):

  • Schlüssel ist größer als

  • Schlüssel ist>

  • KEY IST WENIGER ALS

  • Schlüssel ist <

  • Schlüssel ist gleichwertig

  • SCHLÜSSEL IST =

  • Schlüssel ist nicht größer als

  • KEY IST NICHT>

  • Schlüssel ist nicht weniger als

  • KEY IST NICHT <

  • Schlüssel ist nicht gleichwertig

  • KEY IST NICHT =

  • SCHLÜSSEL IST <>

  • Schlüssel ist größer als oder gleichwertig

  • SCHLÜSSEL IST> =

  • Schlüssel ist weniger als oder gleichwertig

  • SCHLÜSSEL IST <=

START-Beispiel

start indexing
   key is less than
       keyfield of indexing-record
   invalid key
       display "bad start: " keyfield of indexing-record
       set no-more-records to true
   not invalid key
       read indexing previous record
           at end set no-more-records to true
       end-read
end-start


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow