Here is my db.py 
db.define_table("Questions",
  Field('quesno','integer',notnull=True,unique=True),
  Field('question', 'text'),
  Field('qupload','upload',label='Upload Image'),
  Field('optionA', 'string'),
  Field('optionB', 'string'),
  Field('optionC', 'string'),
  Field('optionD', 'string'),
  Field('True1', 'string'),
  Field('False0', 'string'),
  Field('answer', 'string'),
  )

Were and how to right the code to store data from .csv or .xml in data base 
I am struggling for it please help me to solve the problem. 

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to