I am getting this error when exiting my application. I am using delphi 7 with ZEOSLIB 8, PostgreSQL database ver 16.
The Delphi statement I use for loading blobs from database into bitbutton blobs is as follows:
DBtns[DCounter].Glyph.LoadFromStream( Datamod.tblChargeCodesgraphic.DataSet.CreateBlobStream( Datamod.tblChargeCodesgraphic , bmread ).Create ); The ZEOSLIB component method to read a blob from the the PostgreSQL database is createblobstream.
This line of code works perfectly, but how do I close the stream with a ZEOSLIB component method? I cannot find one, and ZConnect.CancelOperation does not work.