[sqlalchemy] compressed version of a field

2010-03-01 Thread Jinal Jhaveri
I would like to store a zlib compressed version of a table field. Whats the best way to handle this where all gets to that field decompress the content and all sets to that field compresses the content -- You received this message because you are subscribed to the Google Groups sqlalchemy

Re: [sqlalchemy] compressed version of a field

2010-03-01 Thread Michael Trier
Hello Jinal, On Mar 1, 2010, at 7:39 PM, Jinal Jhaveri wrote: I would like to store a zlib compressed version of a table field. Whats the best way to handle this where all gets to that field decompress the content and all sets to that field compresses the content You probably want to look

Re: [sqlalchemy] compressed version of a field

2010-03-01 Thread Jinal Jhaveri
Thanks Michael, Is there an example implementation I can look at ? --Jinal On Mon, Mar 1, 2010 at 5:54 PM, Michael Trier mtr...@gmail.com wrote: Hello Jinal, On Mar 1, 2010, at 7:39 PM, Jinal Jhaveri wrote: I would like to store a zlib compressed version of a table field. Whats the