delphi调用sybase存储过程的一个奇怪问题
存储过程调用另外一个过程,大概如下:
create procedure ddddd
@sql varchar(25) output
as
begin
execute @status=eeeee
if @status=0
select sql='ok'
else
select sql='fail'
end
存储过程本身无错,但我用DELPHI5.0的BDE的Tstoredproc控件时,
编译无错,在执行时却报了一个错:
ctsend(): user api layer: external error: this routine
cannot be called because another command structure has
results pending
请各位大侠帮小弟一个忙

