On Sun, Sep 18, 2005 at 10:43:09PM -0700, Bill Whillers wrote: > When using Storable freeze/thaw to work with basic object (hash) storage > within a mysql db (blob column), I can't seem to get any more than 65535 > bytes stored.
You touched the limit of a BLOB, which is limited to 2^16 bytes. Change your column type to MEDIUMBLOB (2^24) or LONGBLOB (2^32). Got the same problem a couple of weeks ago and searched myself crazy. A simple solution though ;-) HTH/Frank