Traceback (most recent call last):
File "gluon/restricted.py", line 173, in restricted
exec ccode in environment
File "applications/raktar/compiled/controllers_lista_szamla.py",
line 360, in <module>
File "gluon/globals.py", line 96, in <lambda>
self._caller = lambda f: f()
File "gluon/tools.py", line 1850, in f
return action(*a, **b)
File "applications/raktar/compiled/controllers_lista_szamla.py",
line 74, in szamla
File "gluon/sql.py", line 3048, in select
rows = cache_model(key, lambda : response(query), time_expire)
File "gluon/cache.py", line 305, in __call__
storage[key] = (time.time(), value)
File "/usr/lib/python2.5/shelve.py", line 123, in __setitem__
p.dump(value)
File "/usr/lib/python2.5/copy_reg.py", line 69, in _reduce_ex
raise TypeError, "can't pickle %s objects" % base.__name__
TypeError: can't pickle buffer objects
SELECT invoice.id, invoice.seller_id, invoice.number, invoice.date,
invoice.document, invoice.invoicedata, seller.id, seller.name,
seller.address, seller.email, seller.phone, seller.description FROM
invoice, seller WHERE ((invoice.id>0 AND invoice.seller_id=seller.id)
AND invoice.id=370) ORDER BY seller.name;
You mean that I can't cache select with uploaded files?
And it seems to me that the trouble is only with one particular select
result...
This is my actual code:
-------------------- cut -----------------------
db.define_table( 'invoice',
Field( 'seller_id', db.seller,
label = 'Eladó',
requires = IS_IN_DB( db, 'seller.id', '%(name)s, %(address)s' ) ),
Field( 'number', 'string',
label = 'Számlaszám',
requires = IS_NOT_EMPTY() ),
Field( 'date', 'date',
label = 'Dátum',
requires = IS_NOT_EMPTY(),
default = request.now ),
Field( 'document', 'upload',
label = 'Számla fájl',
uploadfield = 'invoicedata' ),
Field( 'invoicedata', 'blob' ),
)
def szamla():
'''
form for narrowing select
'''
filter_form=SQLFORM.factory(
Field( 'tol', 'date',
label = 'Tól' ),
Field( 'ig', 'date',
label = 'Ig' ),
Field( 'invoice', 'string',
label = 'Számla', ),
table_name = 'szlaform' )
if filter_form.accepts( request.vars, session ):
query=( ( auth.accessible_query( 'read', db.invoice,
auth.user_id ) )&\
( db.invoice.seller_id==db.seller.id ) )
#
# timeframe
#
if filter_form.vars.tol:
query=query&( db.invoice.date>=filter_form.vars.tol )
if filter_form.vars.ig:
query=query&( db.invoice.date<=filter_form.vars.ig )
#
# Szamlaszam
#
if filter_form.vars.invoice:
import re
re_id=re.compile( " \((\d+)\)$" )
# szamlaszam
if re_id.search( request.vars.invoice ):
invoice=re_id.search( request.vars.invoice ).group( 1 )
if ( db( db.invoice.id==invoice ).count()>0 ):
query=query&( db.invoice.id==invoice )
else:
filter_form.errors.invoice='Nincs ilyen számla az adatbázisban!
%s'%invoice
else:
filter_form.errors.invoice='Helytelen bevitel, használd az
autocompletet!'
if not filter_form.errors:
lista=db( query ).select( orderby = db.seller.name ,
cache=(cache.disk,120))
else:
lista=[]
else:
lista=[]
return dict( filter_form = filter_form, lista = lista )
-------------------- cut -----------------------
What's wrong with it?
lista=db( query ).select( orderby = db.seller.name , cache=(cache.disk,
120))
> You cannot store in a session the result of a select().
This seems to come up a lot. Would it be practical to have Session catch the exception and raise a more helpful (higher-level) one?
> --
> You received this message because you are subscribed to the Google Groups "web2py-users" group.
> To post to this group, send email to web...@googlegroups.com.
> To unsubscribe from this group, send email to web2py+un...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/web2py?hl=en.
>
Sorry I don't understand this session thing :( I already use
cache.disk instead cache.ram...
What is that I didn't count with?
Form the book:
The dictionary returned by cache_controller_on_disk is cached on disk
for 5 seconds. Remember that web2py cannot cache a dictionary that
contains unpickleable objects.
Okay, thats something... :) That was new to me. I found some hint in
about unpickable objects...
There only one question:
If I change the code to
try:
lista=db( query ).select( orderby = db.seller.name ,
cache=(cache.disk,120))
except:
lista=db( query ).select( orderby = db.seller.name )
is the right way?
On Feb 28, 12:34 pm, szimszon <szims...@gmail.com> wrote:
> What does it mean? Is there a thread about it somewhere?
>
> Sorry I don't understand this session thing :( I already use
> cache.disk instead cache.ram...
>
> http://groups.google.com/group/web2py/browse_frm/thread/9993d61782c9b...
>
> What is that I didn't count with?
>
> Form the book:
>
> The dictionary returned by cache_controller_on_disk is cached on disk
> for 5 seconds. Remember that web2py cannot cache a dictionary that
> contains unpickleable objects.
>
> Okay, thats something... :) That was new to me. I found some hint in
>
> http://books.google.hu/books?id=Q0s6Vgb98CQC&pg=PT333&lpg=PT333&dq=py...