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.
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:
>
>
> # # ## ### # ###
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