ORA-12571 error

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Andrew

ORA-12571 error

Post by Andrew » Mon 16 Jan 2006 19:26

Hi,
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;
TOraSession - with "Net" Option.
Thanks.

Challenger
Devart Team
Posts: 925
Joined: Thu 17 Nov 2005 10:53

Post by Challenger » Tue 17 Jan 2006 09:45

We need more detailed description of your problem. Please specify the version of ODAC you use and send to
ODAC support address complete sample to demonstrate this problem including script to create server objects.

Andrew

Post by Andrew » Tue 17 Jan 2006 12:20

challenger wrote:We need more detailed description of your problem. Please specify the version of ODAC you use and send to
ODAC support address complete sample to demonstrate this problem including script to create server objects.
OK, I sent it.

Post Reply