遇到一个奇怪的问题,存储过程在pl/sql develpoer 执行没有问题。但是用delphi执行却报错。
with proc do
    begin
      Close;
      SQL.Clear;
      str_sql :=  StringReplace('exec DataSync_BS_EDXD#Data1','#Data1',str_DBCon,[rfreplaceall]);
      SQL.Add(str_sql);
      ExecSQL;
    end;
程序执行sql语句没有问题。只要执行存储过程都报错。
大家有什么好的解决方法没有。