ScottMattes
Member³
I am stepping thru the following
for i in my_collection.first..my_collection.last
loop
my_var := my_collection( i ).my_var;
end loop;
and I see the following in the watch area
i = 105 (105 entries are in my_collection)
my_collection( i ).my_var = 'something'
my_var = 'something different'
yipes!!!!!!!!!
for i in my_collection.first..my_collection.last
loop
my_var := my_collection( i ).my_var;
end loop;
and I see the following in the watch area
i = 105 (105 entries are in my_collection)
my_collection( i ).my_var = 'something'
my_var = 'something different'
yipes!!!!!!!!!