Icon View Incident Report

Serious Serious
Reported By: Arnd Baranowski
Reported On: 9/14/2007
For: Version 1.05 Build 2
# 2453 LoadFromStream and SaveToStream Methods Not Working with Remote Sessions

The following does not transfer any data. SavetoStream is not doing what it is supposed to do. The streams are empty all the time.



procedure TDMMain.CopyAnTable;
var
   AnStream: TMemoryStream;
begin
   AnStream := TMemoryStream.Create;
   try
    EDBQuery2.SQL.Text := 'Select nni_no as code from EDBC063_2 WHERE 
nni_id = ' + QuotedStr('0630005');
    EDBQuery2.Open;
    EDBQuery2.SaveToStream(AnStream);
    EDBTable1.Open;
    EDBTable1.LoadFromStream(AnStream);
    EDBTable1.Close;
   finally
     AnStream.free;
   end;
end;



Comments Comments
The calls in the remote client code were inexplicably stubbed out.


Resolution Resolution
Fixed Problem on 9/16/2007 in version 1.06 build 1


Products Affected Products Affected
ElevateDB Additional Software and Utilities
ElevateDB VCL Client-Server
ElevateDB VCL Client-Server with Source
ElevateDB VCL Standard
ElevateDB VCL Standard with Source
ElevateDB VCL Trial

Image