Subject Re: [IBO] Bug IBO's version 4.5.Ai with BLOBs fields
Author Jason Wharton
This should be fine.

Jason

----- Original Message -----
From: "Cesar@...: Asseinfo - Sistemas de Informação"
<cesar@...>
To: <IBObjects@yahoogroups.com>
Sent: Sunday, October 04, 2009 7:43 PM
Subject: Re: [IBO] Bug IBO's version 4.5.Ai with BLOBs fields


Mr. Jason... I did the fix below:



procedure TIB_BDataset.SysCancelInsertedRow;
begin
SysAdjustCurrentRow( true, true );

//cezinha - begin
FCurrentCursor.Fields.RefreshBuffers(false, true, false);
//cezinha - end
end;


Could you confirm if will I not have some problem in the future?

I'm waiting your answer anxiously!

Thanks so much





From: Jason Wharton
Sent: Sunday, October 04, 2009 10:01 PM
To: IBObjects@yahoogroups.com
Subject: Re: [IBO] Bug IBO's version 4.5.Ai with BLOBs fields


That is probably all it needs as this will reset the column buffers and
allow the blob contents to be pulled from the server so that the correct
data is shown.

Jason