Re: [web2py] Re: table already exists; 'Rows' object has no attribute 'fields'

2017-04-22 Thread pbreit
I reinstalled Mac OS Sierra which appears to have fixed the problems. -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because yo

[web2py] btw: great job

2017-04-22 Thread lucas
hey everyone, I think we should recognize and congratulate Massimo and the developers of web2py. its been nearly a year since the last production update and the whole platform is just excellent. it is the most stable platform I've ever coded in. I can literally dream it and code it like wh

[web2py] How can I union 2 different table datasets?

2017-04-22 Thread George D Elig
I have the following tables defined and would like to display rows of cats, followed by rows of dogs db.define_table(‘cat’, Field('name', 'string', length=45), Field(‘age’, ‘integer’), Field(‘apt_time’,’datetime’) ) db.define_table(‘dog’, Field('name', 'string', length=45), Field(‘age’, ‘i

[web2py] Google SQL Database user and password - where to set?

2017-04-22 Thread Karoly Kantor
A very simple question: I am trying to move to Google Cloud SQL. I created an SQL instance with Google, where I had to set a data base user name and password. Where do i set that in my web2py app? (Currently i have this in app.yaml, as prescribed by the Google Cloud Website: env_variables:

[web2py] not authorised flash message when I used SQLFORM.grid, but worked fine with SQLFORM.smartgrid

2017-04-22 Thread Rudy
Hi there, It feels really strange to me that when i used SQLFORM.grid(), I got a flash message "not authorised", but when i used smartgrid(), it worked just fine (in both cases i had logged in already). I tried to removed @auth.requires_login(), but same behaviour happened. I seem to miss some

[web2py] GAE Datastore performance / potential index issue

2017-04-22 Thread Karoly Kantor
My queries on GAE Datastore are very slow. So I decided to try to fetch everything into memory before further processing, to no avail. For example, the following runs for 8 seconds for only 3000 items, which is very bad because my app might have much much more than that eventually. que