RELEASE
COBOL | JAVA |
RELEASE | writeSequentialFile |
Syntax
writeSquentialFile ( <file>, <buffer>[, <from>] )
Parameter(s)
<file>
The file id of the file that is being written to.
<buffer>
The file buffer, the content that will be written to the file.
<from> (Optional)
Data from this variable will be copied into the file buffer.
Example(s)
COBOL | Java |
RELEASE sortdata. |
writeSequentialFile(sortfile, fd_Sortdata); |
RELEASE sortdata FROM recorddata. |
writeSequentialFile(sortfile, fd_Sortdata, locDef.recorddata.getValue()); |