Arrays in COBOL/400
Answers were Sorted based on User's Feedback
Answer / mvrk
How to load the entire file into an Array in COBOL/400?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / surya
I believe we dont have verb to load the entire file details in to COBOL400 table. So we go for traditional method: read the records in file one by one and load the records in to table.
First we should the maximum records available in the file, so single dimension table occur value should mention according to that.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between SEARCH and SEARCHALL?
How we can update data area in cobol 400 program?
Explain the input procedure?
How u detect record is locked in Cobol/400 ? Wat is the solution for that ?
What is perform?
Explain the difference between comp & comp-3?
Define perform? And its types?
what is the difference between comp & comp-3?
What are fillers?
What is redefine?
How can i change the below code in SQL to cobol/400? EXEC SQL SELECT COUNT(*) INTO : WS-COUNT FROM Db file WHERE Field 1 = : WS-VAR AND Field 2 = : WS-USERID END-EXEC
Explain the syntax of sort?