|
From: David E. <de...@us...> - 2005-05-28 19:50:00
|
Girish Modi wrote: > Pl see attached sample/test program test12ls.cob which is not working in > our setup > > Problem is file status 37 in i-o mode for line sequential file IO mode for line-sequential files is not supported. Line sequential files have variable length records, with a <LF> delimiter. So a re-write would not work properly. Hint: You can create a sequential file (fixed record length) with a <LF> as the last character of each record. Then you can open the file in IO mode. |