注册 登录
编程论坛 PowerBuilder

请教PB调用 ASA存储过程的问题

hfdq 发布于 2017-02-17 17:38, 2800 次点击
ASA 8里在写的存储过程是可以运行的

代码如下
比较简单,测试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编辑过]

1 回复
#2
Bc_Newboy2021-10-14 14:58
存储过程,可以充分利用数据库性能,赞
1