Icon View Incident Report

Serious Serious
Reported By: Richard Harding
Reported On: 7/2/2007
For: Version 1.04 Build 4
# 2402 InfoPower RichEdit Dialog Experiences Stream Read Error

I am editing CLOB fields using Infopower's RichEdit dialog. When the field is modified, a "Stream Read Error" message is displayed.

var
   Table: TEDBTable;
   TempBlobStream: TEDBBlobStream;
   TempString: string;
begin
   Table:=TEDBTable.Create(nil);
   try
      with Table do
         begin
         DatabaseName:='Test438';
         TableName:='biolife';
         Open;
         Edit;
         TempBlobStream:=TEDBBlobStream.Create(TMemoField(FieldByName('Notes')),bmReadWrite);
         TempBlobStream.Seek(0,soFromEnd);
         TempString:=FieldByName('Notes').AsString;
         Cancel;
         end;
   finally
      Table.Free;
   end;
end;



Comments Comments
This issue could also occur with non-InfoPower controls. The above code illustrates how to reproduce this with standard ElevateDB components.


Resolution Resolution
Fixed Problem on 7/3/2007 in version 1.04 build 5


Products Affected Products Affected
ElevateDB VCL Client-Server
ElevateDB VCL Client-Server with Source
ElevateDB VCL Standard
ElevateDB VCL Standard with Source
ElevateDB VCL Trial

Image