how come? (collections and debug)

ScottMattes

Member³
I have the following code in a stored procedure

for i in list_a.first..list_a.last loop
list_b( list_b.count + 1 ) := list_a( i );
end loop;

While in debug I can right click on the first list_b in "list_b( list_b.count + 1 )" and choose 'view collection' and I see the values, but when I do the same thing for the list_a in the same line nothing happens. If I single step I see the loop performed 4 times, so there are values there in list_a.
 
Back
Top