BUG: Params in Ora Stored Procedure
Posted: Fri 30 May 2008 09:48
The version 6.5 of ODAC maybe has a bug with params from stored procedure
for example
with version 6.25 and earlier it runs without Problems
kind regards
Oliver
for example
Code: Select all
From
begin
:RESULT := PCK$_TEST.GETTEST(:VAR1, :VAR2);
end;
changes to
begin
PCK$_TEST.GETTEST(:RESULT, :VAR1, :VAR2);
end;kind regards
Oliver