DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: How to output array value

  1. #1
    Join Date
    Jan 2003
    Location
    Hull, UK
    Posts
    220

    How to output array value

    I got the foll. pl/sql code

    DECLARE
    thisvar TASKARRAY;
    ....
    ...

    ...

    FOR TASK_REC IN TASK_CUR LOOP
    thisvar := TASKARRAY();
    FOR i in 1..n_recs LOOP
    thisvar.extend();
    thisvar(i) := TASK(task_rec.task_code,
    task_rec.specified,
    task_rec.bonus_amt,
    'N/A',
    task_rec.operative_no);


    i need to output thisvar(i).values, how can i print the output.

    Rgds

    Srini

  2. #2
    Join Date
    Jan 2003
    Location
    Hull, UK
    Posts
    220
    Hi guys

    I got it working

    Srini

  3. #3
    Join Date
    Nov 2001
    Location
    Singapore
    Posts
    182
    Hi Srini,

    How did you get work?
    J Gangadhar

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width