On 1/17/06, Yannick <[EMAIL PROTECTED]> wrote:
> I am new to TurboGear and I am having some difficulties with the
> framewok (which is very cool by the way :).

Thanks, and welcome!

>
> Each time I try to save an SQLObject in a session; I get an error while
> trying to retrieve it after the first request cycle.

Nope. You can't put an SQLObject in the session because its data is
considered tied to the transaction it was created in. What you *can*
do, though, is put the ID in the session and then just do
ClassName.get(ID) when you need the data back.

Kevin

Reply via email to