after I updated my BDS2006 from zeos 6.5.1 to 6.60beta I everytime receive an ERangeError, after the CreateForm procedure of the mainform was executed.
The only debug info I am able to understand was the
Code: Select all
function TZPostgreSQL8PlainDriver.DecodeBYTEA(value: string): string;
var decoded,dest:pchar;
len:Longword;
von,nach:string;
begin
decoded:=ZPlainPostgreSql8.PQunescapeBytea(pansichar(value),@len);
SetLength(result,len);
dest:=pchar(result);
Move(decoded^,result[1],len); (***)
ZPlainPostgreSql8.PQFreemem(decoded);
end;
What can be a solution for this error, because I don't want to suppress the ERangeError message.
But I didn't find anything else, which is not working, so the message does not affect the program.
Thanks
Daniel