[求助] PB调用ASA存储过程
在ASA 9.0的Interactive SQL中执行存储过程pro_1可以成功create variable out1 char(100);
create variable out2 char(100);
call dba.pro_1(in1,in2,out1,out2);
select out1,out2 from dummy
但在PB中调用pro_login却提示我output附近有错误。如果去除output运行时出现数据库错误S1105参数类型错。如果去除两个输出项可以运行但得不到返回值。
string cIn1,cIn2,cOut1,cOut2
declare db_pro procedure for dba.pro_1
@in1 = :cIn1,
@in2 = :cIN2,
@out1 = :out1 output,
@out2 = :out2 output;
execute db_pro;
fetch db_pro into :out1,:out2;
请问这是什么原因。