BUG: Params in Ora Stored Procedure

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
oschulz
Posts: 5
Joined: Fri 30 May 2008 09:39

BUG: Params in Ora Stored Procedure

Post by oschulz » Fri 30 May 2008 09:48

The version 6.5 of ODAC maybe has a bug with params from stored procedure
for example

Code: Select all

From

begin
  :RESULT := PCK$_TEST.GETTEST(:VAR1, :VAR2);
end;

changes to

begin
  PCK$_TEST.GETTEST(:RESULT, :VAR1, :VAR2);
end;
with version 6.25 and earlier it runs without Problems

kind regards
Oliver

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Tue 03 Jun 2008 08:41

We have fixed this problem. The fix will be included in the next build of ODAC.

Post Reply