Check in models/db.py which database is defined there (probably db = ...).

The error message said you have not defined dbu.  I suspect you should use
'db'.

Regards
Johann


On 6 March 2014 07:43, Ravi <ravi....@gmail.com> wrote:

>
> import datetime
> now=datetime.datetime.now()
>
> dbu.define_table('files',
>    Field('title', "string", unique=False),
>    Field('file', 'upload', autodelete=True),
>    Field('datecreated','datetime',default=now,readable=False))
> ......error....
> Traceback (most recent call last):
>   File "/home/ravi/web2py/gluon/restricted.py", line 217, in restricted
>     exec ccode in environment
>   File "/home/ravi/web2py/applications/app3/models/db.py" 
> <http://127.0.0.1:8000/admin/default/edit/app3/models/db.py>, line 4, in 
> <module>
>     dbu.define_table('files',
> NameError: name 'dbu' is not defined
>
>  --
> 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 you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>



-- 
Because experiencing your loyal love is better than life itself,
my lips will praise you.  (Psalm 63:3)

-- 
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 you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to