Re: [web2py] Re: Rows to Storage conversion available?

2012-09-27 Thread Massimo Di Pierro
OK. we need to rewrite the pickle/unpickle functions. Will try asap. On Thursday, 27 September 2012 23:03:40 UTC-5, rochacbruno wrote: > > This is the same think that happens when we use memcache, redis or > cache.disk for Rows objects. --

Re: [web2py] Re: Rows to Storage conversion available?

2012-09-27 Thread Bruno Rocha
This is the same think that happens when we use memcache, redis or cache.disk for Rows objects. --

[web2py] Re: Rows to Storage conversion available?

2012-09-27 Thread MichaelF
No, it doesn't work. The results of the select (with cacheable=True) is a Rows object: Person.id,Person.First_name,Person.Last_name,Person.Address1,Person.Address2,Per son.City,Person.State,Person.Zip,Session.Start_datetime,Session.End_datetime 32,Sue,Clavin,1720 Wood Ave.,,Colorado Springs,CO,80

[web2py] Re: Rows to Storage conversion available?

2012-09-27 Thread Massimo Di Pierro
While we can do this. I think you try d rows = db().select(cacheable=True) rows will lack update_record and delete_record methods but they should be pickable. Let is know if that works. On Thursday, 27 September 2012 21:26:32 UTC-5, MichaelF wrote: > > I want to store Rows values in a session