AccessViolation if use OraSQLMonitor and XMLTYPE

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
dimon_adv
Posts: 27
Joined: Mon 01 Feb 2010 09:36

AccessViolation if use OraSQLMonitor and XMLTYPE

Post by dimon_adv » Tue 30 Mar 2010 14:25

Oracle 11.1 (Win), Delphi 2010, ODAC last
In DB create package with this procedure:

Code: Select all

procedure TST_XML(p_TSTXML SYS.XMLTYPE) is
begin
  null;
end;
Simple application with connection to DB and StoredProcedure execute next statement:

Code: Select all

OraStoredProc1.ParamByName('P_TSTXML').AsXML.OCISvcCtx := OraSession1.OCISvcCtx;
OraStoredProc1.ParamByName('P_TSTXML').AsXML.AsString := '';
OraStoredProc1.Execute; // Access violation if SQLMonitor.Active = True
If SQLMonitor.Active = False - all OK

dimon_adv
Posts: 27
Joined: Mon 01 Feb 2010 09:36

Post by dimon_adv » Fri 02 Apr 2010 06:27

The problem of poorly defined?
I got the wrong forum and for the official users have other means of notification error?
What remains to be done to support those drawn attention to an error?

bork
Devart Team
Posts: 649
Joined: Fri 12 Mar 2010 07:55

Post by bork » Fri 02 Apr 2010 07:11

Hello

Thank you for information. We have reproduced this problem and fixed it. This fix will be included in the next ODAC build.

Post Reply