Possible BUG in 5.2.5 Oracle
Posted: Wed 22 Jan 2014 11:06
In my Program i get a null pointer Exception in OraClassesUni:
function TOraLob.IsTemporary: LongBool;
begin
// OCILobIsTemporary is supported in Oracle 8.1.7
if OCISvcCtx.Home.OCIVersion >= 8100 then
Check(...
cause OCISvcCtx.Home is nil
It is Called from FreeComplexField and the OCI8 in TOraBlob.FreeBlob is also nil
causing a second exception
after adding some nil-Pointer assigned code it works. But i think the BUG is elsewhere.
Sry that i can't give you an example but it is part of a very big projekt.
function TOraLob.IsTemporary: LongBool;
begin
// OCILobIsTemporary is supported in Oracle 8.1.7
if OCISvcCtx.Home.OCIVersion >= 8100 then
Check(...
cause OCISvcCtx.Home is nil
It is Called from FreeComplexField and the OCI8 in TOraBlob.FreeBlob is also nil
causing a second exception
after adding some nil-Pointer assigned code it works. But i think the BUG is elsewhere.
Sry that i can't give you an example but it is part of a very big projekt.