when I'm trying to insert data in table with blob fields in some cases I'm getting at first 'Net error 0' and next ORA-12571 error without any description. Could you help me to understand this problem. I'm using TOraQuery with 'Insert into...' SQL.
Also I'm assigning params values in that way:
Code: Select all
var
MemoryStream: TMemoryStream;
begin
MemoryStream := TMemoryStream.Create();
try
...
ADBParameter.LoadFromStream(MemoryStream, ftBlob);
finally
FreeAndNil(MemoryStream);
end;
Thanks.