G
goldfeng
Unregistered / Unconfirmed
GUEST, unregistred user!
暂时没钱了,请大家帮个忙,谢谢啦。
存储过程在SQLPlus中运行没问题,DELPHI中的代码如下:
function TSTK.statSTK : boolean;
var
sp : tStoredProc;
result1 : boolean;
begin
sp := TStoredProc.Create(nil);
try
sp.DatabaseName := dmMain.DB.DatabaseName;
sp.SessionName := dmMain.db.SessionName;
sp.StoredProcName := 'XXF.STATSTK';
sp.ExecProc;
result1 := true;
finally
sp.Free;
end;
result := result1;
end;
存储过程在SQLPlus中运行没问题,DELPHI中的代码如下:
function TSTK.statSTK : boolean;
var
sp : tStoredProc;
result1 : boolean;
begin
sp := TStoredProc.Create(nil);
try
sp.DatabaseName := dmMain.DB.DatabaseName;
sp.SessionName := dmMain.db.SessionName;
sp.StoredProcName := 'XXF.STATSTK';
sp.ExecProc;
result1 := true;
finally
sp.Free;
end;
result := result1;
end;