On Mon, Apr 16, 2007 at 01:26:43PM -0300, Leandro Lucarella wrote:
> Just a thought: what about adding a 'filters' to any "blob-like" column?
class GzipFilter(validators.Validator):
def from_python(self, value, state):
return compress(value)
def to_python(self, value, state):
return decompress(value)
class MyTable(SQLObject):
bob = PickleCol(validator=GzipFilter())
Oleg.
--
Oleg Broytmann http://phd.pp.ru/ [EMAIL PROTECTED]
Programmers don't die, they just GOSUB without RETURN.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
sqlobject-discuss mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sqlobject-discuss