[web2py] SQLFORM key error on simple table with one record

2016-09-29 Thread Peter
I'm punch drunk from looking at this one! Traceback 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. 17. 18. 19. 20. 21. 22. Traceback (most recent call last): File "/home/peter/web2py/gluon/restricted.py", line 227, in restricted exec ccode in environment File

[web2py] SQLFORM key error

2012-08-23 Thread pylix
Here's my model db = DAL('sqlite://storage.sqlite') db.define_table('person', Field('name', requires=IS_NOT_EMPTY()), Field('phone', requires=IS_NOT_EMPTY()), Field('address', requires=IS_NOT_EMPTY()), Field('city', requires=IS_NOT_EMPTY()), Field('state',

Re: [web2py] SQLFORM key error

2012-08-23 Thread Bruno Rocha
web2py version?? On Thu, Aug 23, 2012 at 10:00 PM, pylix pyl...@gmail.com wrote: Here's my model db = DAL('sqlite://storage.sqlite') db.define_table('person', Field('name', requires=IS_NOT_EMPTY()), Field('phone', requires=IS_NOT_EMPTY()), Field('address',

Re: [web2py] SQLFORM key error

2012-08-23 Thread pylix
1.99.7 stable i think it's the latest downloaded it recently but i'm on a windows machine, maybe that's the issue? On Thursday, August 23, 2012 9:04:41 PM UTC-4, rochacbruno wrote: web2py version?? On Thu, Aug 23, 2012 at 10:00 PM, pylix pyl...@gmail.com javascript:wrote: Here's my model

Re: [web2py] SQLFORM key error

2012-08-23 Thread Massimo Di Pierro
We have posted some broken web2py version to perform some experiments. You may have gotten one of them. Download it again now. It is a release candidate and should be better than 1.99.7. On Thursday, 23 August 2012 20:17:02 UTC-5, pylix wrote: 1.99.7 stable i think it's the latest downloaded

Re: [web2py] SQLFORM key error

2012-08-23 Thread pylix
I'm an idiot... the software works fine I just forgot to name the model appropriately(it wasn't named like the controller). sorry for using up your resources on this silly mistake I'll try to troubleshoot more own my own in the future. On Thursday, August 23, 2012 9:49:14 PM UTC-4, Massimo Di