LoadFromBlobField
Hi,
In 2.5 LoadFromBlobfield was available, it isn't in anymore in 3.0. Am I supposed to write myself the blob to stream function or is it forgotten by accident?
In 2.5 LoadFromBlobfield was available, it isn't in anymore in 3.0. Am I supposed to write myself the blob to stream function or is it forgotten by accident?
Comments
field.
stream := TMemoryStream.Create;
TfrxReport.SaveToStream(stream);
stream.Position := 0;
(dataset.fieldByName('my_blob') as TBlobField).LoadFromStream(stream);
reverse the process for loading