cobol
START uttalande
Sök…
Anmärkningar
START
uttalandet ger ett sätt att placera en läsning i en fil för efterföljande sekventiell hämtning (med nyckel).
Det nyckelförhållande kan inkludera (men är inte begränsat till):
Nyckeln är större än
NYCKEL ÄR>
Nyckeln är mindre än
NYCKEL ÄR <
NYCKEL ÄR JÄMFÖRT
NYCKEL IS =
Nyckeln är inte större än
NYCKEL ÄR INTE>
Nyckeln är inte mindre än
NYCKEL ÄR INTE <
Nyckeln är inte lika med
NYCKEL ÄR INTE =
NYCKEL ÄR <>
Nyckeln är större än eller lika med
NYCKEL ÄR> =
Nyckeln är mindre än eller lika med
NYCKEL ÄR <=
START-exempel
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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow