H
haiyang2008
Unregistered / Unconfirmed
GUEST, unregistred user!
oracle的包:
CREATE OR REPLACE PACKAGE PKG_GCGL is
type type_cur is ref cursor;
procedure proc_return_login(ddid in varchar2,typecur out type_cur);
end pkg_gcgl;
CREATE OR REPLACE PACKAGE BODY PKG_GCGL is
procedure proc_return_login(ddid in varchar2,typecur out type_cur) as
begin
open typecur for
select V_yhdm,V_xm,V_ddid,V_mm,C_sfyx,I_bmdm
from pt_yhmc where v_ddid=ddid;
end proc_return_login;
end pkg_gcgl;
请问如何再c#中调用proc_return_login使数据显示在datagrid中;
CREATE OR REPLACE PACKAGE PKG_GCGL is
type type_cur is ref cursor;
procedure proc_return_login(ddid in varchar2,typecur out type_cur);
end pkg_gcgl;
CREATE OR REPLACE PACKAGE BODY PKG_GCGL is
procedure proc_return_login(ddid in varchar2,typecur out type_cur) as
begin
open typecur for
select V_yhdm,V_xm,V_ddid,V_mm,C_sfyx,I_bmdm
from pt_yhmc where v_ddid=ddid;
end proc_return_login;
end pkg_gcgl;
请问如何再c#中调用proc_return_login使数据显示在datagrid中;