Re: [SQLObject] Can't figure out usage of PickleCol...

2006-08-03 Thread Oleg Broytmann
On Wed, Aug 02, 2006 at 04:39:44PM -0400, Christopher DeMarco wrote: > t.test['baz'] = 'mumble' obj = t.test obj['baz'] = 'mumble' t.test = obj Oleg. -- Oleg Broytmannhttp://phd.pp.ru/[EMAIL PROTECTED] Programmers don't die, they just GOSUB without RETURN.

Re: [SQLObject] Can't figure out usage of PickleCol...

2006-08-02 Thread sophana
sqlobject does not detect the object modification. My workaround is to call .set everytime you modify the pickled object. see below Christopher DeMarco a écrit : > I can use PickleCol in "brute force" mode, but not in "native dict > mode". Here's my toy program: > > > # # ## ### # ###

[SQLObject] Can't figure out usage of PickleCol...

2006-08-02 Thread Christopher DeMarco
I can use PickleCol in "brute force" mode, but not in "native dict mode". Here's my toy program: # # ## ### # # # from sqlobject import SQLObject, PickleCol, StringCol import sys __connection__ = "sqlite:///home/cmd/tg/test.sqlite?debug=1" class Te