I have an intresting problem with ODAC + Oracle 10g R2.
Server: Win2003Adv Server with ServicePack2, Oracle 10g R2
Client: Xp without ServicePacks, Delphi6, ODAC 4.0.0 And 5.55.0.20 !
Oracle function:
Function teszt( i_blobparam IN BLOB ) return NUMBER IS
BEGIN
.
.
.
RETURN 0;
END;
Calling:
sto.ParamByName('i_blobparam').ParamType := ptInput;
sto.ParamByName('i_blobparam').AsBLOBLocator.LoadFromFile( ...File... );
sto.Execute;
Error:
ORA-12571, ORA-00600, "Operation not allowed when the connection is closed"
This Technology Working Succesfully with Oracle 10g !!!

How can solve we this problem ?
by