Cursors can be declared in both working-storage & procedure
division, Agreed.
But is there any difference? If could you please suggest
what is the difference.
TIA
Answer Posted / sam
yes there sre diffrence.
If we declare cursor in working storage section then it is
called as static cursor without parameters from cobol.
If we declare cursor in procedure division then we can use
COBOL variables as parameters to the cursor. See the
examples for both the cases...
Eg: STATIC CURSOR
WORKING-STORAGE SECTION.
01 HV-EMPNO PIC 9(4) value 7934.
EXEC SQL
DEFINE C1 CURSOR FOR SELECT * FROM EMP WHERE EMPNO=HV-EMPNO
END-EXEC.
In the above case EMPNO is static. We cannot move a value
or read a value in to empno, because it is in working
storage section.
DYNAMIC CURSOR:
PROCEDURE DIVISION.
ACCEPT HV-EMPNO.
EXEC SQL
DECLARE C1 CURSOR FOR SELECT * FROM EMP WHERE EMPNO=:HV-
EMPNO
END-EXEC.
In the above example we can read EMPNO from another table
or file or we can take it from user. Now cursor becomes
dynamic.
I hope now its clear for you. If you need more information
let me know.
| Is This Answer Correct ? | 6 Yes | 24 No |
Post New Answer View All Answers
Why do we need reorg in db2?
What is a cursor in programming?
How do I delete a column in db2?
What is the use of commit in db2?
When a COBOL-DB2 program in PRODUCTION is updating main tables and gone for long run, what have to do?
File not opened because library is *PROD and debug is UPDPROD(*NO). ? what may be the reason? how to solve it..?
What is reorg?
What is package in db2 mainframe?
When the like statement is used?
Mention data types used in db2 ?
Give a brief description of db2 isolation levels?
What is the latest version of ibm db2?
Explain the function of data manager.
can we view the access paths created by dbrm ? how ? thx
How can we retrieve the total number of records in RPG & CLLE?