我想做一个小型 RPG 程序,但很生疏。它类似于最近的SQL。
我想读取一个逻辑文件,并且只选择今天日期的那些记录。该字段定义为 NUMeric 8 0。 YYYYMMDD 这是执行此操作的方法吗?我只想阅读那些记录 = 今天的日期。(工作日期还可以)。
F Filename etc.
D Data structure for date *** not sure how to code this,
DS Datein
D year4in
D Cent2
D YR2
D month2in
D day2in
****
D DS Dateout
D month2out
D day2out
D yr2out
C Read loop
Read Filename until EOF.
Move Ordhdt to Datemanip
If Ordhdt not equal udate
Leave
else
Write record to work file
iter
End read loop.