uDynamic SQL supports object collections and all kinds
of operations on object collections:
ØFORALL
(Currently only in USING clause):
§Right:
u forall i in
dept.first..dept.last
u execute immediate
u 'delete from emp
where deptno=:1‘
u using
dept(i);
§Wrong:
u forall i in
dept.first..dept.last
u execute
immediate
u 'drop table
t_'||dept(i);
ØBULK COLLECT