On 12/29/05, Liza <[EMAIL PROTECTED]> wrote: > I'm trying to switch my session handling from Ram to File and ran into > an immediate problem. I get this error when the session is > established: > > PicklingError: Can't pickle <class 'sqlobject.declarative.sqlmeta'>: > it's not found as sqlobject.declarative.sqlmeta
Do you really need to keep an sqlobject in the session? It seems like that data could get out of date anyhow. If you just store some kind of reference to the data (the id, for example), you can re-retrieve it as needed... Kevin

