Hi all
i am not clear on index by pls integer
in this code by using INDEX BY PLS_INTEGER and with out this i didnt get any error and dif.could you please explain me
TYPE TMP_REC1 IS RECORD
(
NUM number,
CODE number,
YEAR number,
SEQ_NUM umber
);
TYPE TMP_REC2 IS TABLE OF TMP_REC1 INDEX BY PLS_INTEGER;
HOVER_REC TMP_REC2;