运维网's Archiver
论坛
›
Oracle运维
› BIRT调用oracle function
hncys
发表于 2018-9-21 13:05:46
BIRT调用oracle function
); uname users.name%type;
begin
open mycursor;
loop
fetch mycursor
into uid,uname;
exit when mycursor%notfound;
t.extend();
t(t.count) := t_test(uid,uname);
end loop;
close mycursor;
return t;
end testbirt2;
页:
[1]
查看完整版本:
BIRT调用oracle function