I would do it straight from the database. You can use mysqldump (If using mysql) to output a csv file. Any other major database I know of can dump to csv. Generic SQL to do it: SELECT * INTO OUTFILE 'export.csv' FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"' LINES TERMINATED BY '\n' FROM table_to_be_exported; (Note: SELECT * FROM statement can be any query)
Hajo On Feb 17, 4:02 am, djangonoob <jacquesnel1...@gmail.com> wrote: > Hi I have a quick question. > > I am currently using django-survey and was wondering if there is any > way of downloading the results into a CSV format. It is a nice app but > the download function is surely very important. > > Another way I though of was to write the results to CSV myself with > csv writer but my skills and knowledge of django is still too novice > for me to attempt that. Still I had a go at achieving this and failed. > > Any comments or suggestions would be very welcome. > > Thank you -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.