请问各位我用ORACLE写的存储过程但是我在VB中不知道怎样用呀请指教呀我现在很急的呀
我的存储过程如下呀
create or replace procedure count_num
(i_name in aaa.c_name%type,
i_count out number(4)
)
as
begin
select count(*) into i_count from aaa where c_name:=i_name;
end;
请指教怎样调用呀很急的呀
...全文
262打赏收藏
调存储过程很急的呀
请问各位我用ORACLE写的存储过程但是我在VB中不知道怎样用呀请指教呀我现在很急的呀 我的存储过程如下呀 create or replace procedure count_num (i_name in aaa.c_name%type, i_count out number(4) ) as begin select count(*) into i_count from aaa where c_name:=i_name; end; 请指教怎样调用呀很急的呀