Board index » delphi » BlobStream limited to 32768 bytes
Tim Radford
![]() Delphi Developer |
Tim Radford
![]() Delphi Developer |
BlobStream limited to 32768 bytes2004-02-11 02:02:49 AM delphi167 I have saved some images to an image column in SQL server. Using SQL Explorer I can see that the images are correctly saved. At the size of the memory stream they were saved via was 76,854 bytes. When I try to read the images back I only get part o fthe image back and the size of the blob stream is only 32768. If I use a DB image control it shows exactly thje same incomplete image, but as I said, SQL explorer is able to display the complete image. Any help appreciated. Tim |
Branko Starasinic
![]() Delphi Developer |
2004-02-11 09:59:45 PM
Re:BlobStream limited to 32768 bytes
I don't know how do you access the SQL server. If you use SQL Links than you
have to change the parameter BLOB SIZE in BDE Administrator. When I use OLE DB it just works without any aditional settings. Branko "Tim Radford" <XXXX@XXXXX.COM>writes QuoteI have saved some images to an image column in SQL server. Using SQL |
Tim Radford
![]() Delphi Developer |
2004-02-12 12:50:31 AM
Re:BlobStream limited to 32768 bytes
Thanks. Setting the BLOB SIZE does the trick. I checked the help files too
and realised that setting RequestLive also fixes it. Tim "Branko Starasinic" <XXXX@XXXXX.COM>writes QuoteI don't know how do you access the SQL server. If you use SQL Links than |