after updating our software to Delphi XE5 we face the following problem:
Problem:
When closing application the following error occurs:
Project Project1.exe raised exception class $C0000008 with message 'system exception (code 0xc0000008) at 0xde04845a'.
How to reproduce:
Open new project.
Drop TOraSession and TButton into form.
Code: Select all
object OraSession1: TOraSession
Options.KeepDesignConnected = False
Server = '12345'
LoginPrompt = False
Left = 44
Top = 4
end
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
OraSession1.open;
end;
Info:
In this test project there is no "APPCRASH" when run outside IDE but our real application will crash when closing it. As far as I have figured it out there must be an ORA-Error for the AV to occur.
Environment
Windows 8.1 64bit
Delphi XE5 Update 2
ODAC 9.2.7
Please help!
Cheers, bij