#2
Bc_Newboy2021-10-14 14:58
|
代码如下
比较简单,测试call是可以运行的
程序代码:
ALTER procedure DBA."new"(out @c_name char(20))
on exception resume
begin
select 客户名字 from
customer where
客户编号 = 'HF222'
end
现在我想在PB里调用这个过程,
代码如下
程序代码:
char ls_Return
Declare my_proce Procedure For new
@c_name =:ls_Return output;
Execute my_proce ;
If SQLCA.SQLCode <> 0 Then
messagebox("","错误")
End If
Fetch my_proce Into :ls_Return;
Close my_proce ;
sle_1.text=ls_Return
我想在表单里面的sle_1显示结果
提示是找不到这个存储过程的
请问是什么原因
为什么PB找不到这个过程?
[此贴子已经被作者于2017-2-17 17:41编辑过]