Evident memory corruption in TOraQuery
Posted: Mon 12 Mar 2007 07:11
ODAC 5.80.0.37
Oracle 9.2.0.8/Linux
Delphi 7
The following trivial query crashes host application being executed by TOraQuery:
There's probably a memory corruption or stack overflow. It's even more strange as this query is executed OK:
Oracle 9.2.0.8/Linux
Delphi 7
The following trivial query crashes host application being executed by TOraQuery:
Code: Select all
select level from dual connect by level<=1000Code: Select all
select * from (
select level from dual connect by level<=1000)