Hi there,
I use the SQLdb-Package to Access and the DataAccess components to display/edit data from a firebird 1.5 database.
TDBLabel and TDBEdit are working well. TDBCheckBox does not really, but okay.
So far so good.
Then I places a TDBMemo on my form to access a text-blob field. It diplays the content but if I post any changes of this field my app raise an excpetion: "Acces violation". If I press ignore, the app is standing still/hang off.
The debugger opens the file streams.inc which and marks the
procedure TStream.WriteBuffer(const Buffer; Count: Longint);
begin
if Write(Buffer,Count)<Count then
Raise EWriteError.Create(SWriteError);
end;
at the if clause.
Can anyone help my solve this problem or how to edit blob-fields on a other way?
Thx[/code]