Question : Building collection using pre-defined object TYPE

I'm looping through a file and need to assign the values found in the file to the collection.

Following is some simplified code, without all the code necessary to open the file, of what I'm trying to do.  For reasons that escape me, it's not working.  I'm still trying to get a handle on how collections work.

Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
declare
  lv_emp_id       number;
  lv_emp_name varchar2(40);
  lv_collection   objtyp_collection;
  i                      number :=0;
begin
   loop
      lv_emp_id       := NULL; 
      lv_emp_name := NULL;
      utl_file.get_line(lv_file_handle, lv_new_line);
      lv_emp_id       := substr(lv_new_line,1,5);
      lv_emp_name := substr(lv_new_line,6,30);
   
      i := i + 1;
      lv_collection.append;
      lv_collection(i).emp_id       := lv_emp_id;
      lv_collection(i).emp_name := lv_emp_name;
   end loop;
end;
Open in New Window Select All

Answer : Building collection using pre-defined object TYPE

There was a mistake in the above code, see the corrected one.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
SQL>declare
  2    l_array test_tbl_typ;
  3    i number := 1; 
  4   begin
  5    l_array := test_tbl_typ();
  6    for rec in (select empno, ename from emp) loop
  7     l_array.extend(1);
  8     l_array(i) := test_typ(rec.empno, rec.ename);
  9     i := i + 1;
 10    end loop;
 11    dbms_output.put_line(l_array.count);
 12   end;
 13   /
14
 
PL/SQL procedure successfully completed.
Open in New Window Select All
Random Solutions  
 
programming4us programming4us