Here is the Code from the Model defining the table

db.define_table('logs_db',
                Field('case_num'),
                Field('case_desc'),
                Field('log_gen_time', writable=False, readable=False),
                Field('log_uniq_name', writable=False, readable=False, 
unique=True),
                Field('log_file', 'upload', autodelete=True),
                auth.signature)


And here is the default.py controller

def index():
    form = SQLFORM(db.logs_db).process()
    if form.accepted:




On Monday, December 14, 2015 at 12:26:28 PM UTC+5:30, Anthony wrote:
>
> Please show the code you are using to generate and process the form.
>

-- 
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/d/optout.

Reply via email to