Hi,
I'm using dbExpress and I have created the following procedure in Oracle:
create or replace
procedure m_hcscurproc (p_cur out sys_refcursor)
IS
begin
open p_cur for
select orgid from organization;
end;
How do I write my SQL code to get the returned data?
Regards,
Bill