EDITIONABLE

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
sinys
Posts: 186
Joined: Tue 21 Feb 2012 03:44

EDITIONABLE

Post by sinys » Sun 18 Dec 2016 13:38

ODAC 9.7.28 Wrong behavion with EDITIONABLE keyword:

Code: Select all

procedure TForm1.Button1Click(Sender: TObject);
begin
OraScript1.SQL.Text :=
'create or replace EDITIONABLE procedure proc11 is ' + #13#10 +
'begin ' + #13#10 +
'  null; ' + #13#10 +
'end; ' + #13#10 +
'/ ' + #13#10;
  ShowMessage(IntToStr(OraScript1.Statements.Count));  // showing 2
end;
In sqlplus is OK:

Code: Select all

SQL> create or replace EDITIONABLE procedure proc11 is
  2  begin
  3    null;
  4  end;
  5  /

Procedure created.

sinys
Posts: 186
Joined: Tue 21 Feb 2012 03:44

Re: EDITIONABLE

Post by sinys » Mon 19 Dec 2016 07:18

And please check Editioning View and NOEDITIONABLE option too.

sinys
Posts: 186
Joined: Tue 21 Feb 2012 03:44

Re: EDITIONABLE

Post by sinys » Tue 20 Dec 2016 06:18

Could you please fix it ASAP? It's critical bug for us.

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: EDITIONABLE

Post by MaximG » Tue 20 Dec 2016 10:00

Thank you for the information. We are investigating the issue and will inform you as soon as any results are available.

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: EDITIONABLE

Post by MaximG » Wed 21 Dec 2016 13:47

Thank you for the information. We have reproduced the problem and fixed the bug. The fix will be included in the next ODAC build. Currently, we can send you a night build of LiteDAC with the fix. For this, please specify your license number and the exact version of Delphi you are using via e-support : https://www.devart.com (menu «Support»\«Request Support»).

Post Reply