What is the syntax required for the creation of a cursor?

Answer Posted / prasad

Example For cursor Syntax:

Declare Cursor:

EXEC SQL DECLARE CUST_ITM CURSOR
FOR
SELECT
OWN_CUS_NO,

OWN_CUS_ITM_SUF_NO
FROM
NPJXTII
WHERE SCK_NO = :SCK-
NO
AND SCK_DT = :NPS-ORIG-TRANS-
DT

AND SCK_LN_ITM_SEQ_NO = :SCK-LN-ITM-SEQ-
NO

END-
EXEC.

Open Cursor:

EXEC SQL OPEN CUST_ITM
END-EXEC.

Fetch Cursor:

EXEC SQL FETCH CUST_ITM
INTO :OWN-CUS-NO,
:OWN-CUS-ITM-SUF-NO
END-EXEC.


Close Cursor:

EXEC SQL CLOSE CUST_ITM
END-EXEC.

Is This Answer Correct ?    12 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Give a brief description of db2 isolation levels?

768


What is dclgen in db2?

865


what is diffrence b/w file-aid tool and file-aid utility???

4487


What is the use of dclgen in db2?

778


What is the connection string to connect to the DB2 Database ?

826


Is it possible using max on a char column?

816


Which component is used to execute the sql statements?

817


What is clone table?

771


What types of tables are there in the db2 database?

765


What are types of indexes?

750


What is nvl in db2?

803


What is dclgen (declaration generator)?

797


What is the clustering index in the db2 database?

736


How do you concatenate the firstname and lastname from emp table to give a complete name?

786


Define db2 and its databases?

799