I am developing a simple app. I am using sqlite to save data into a table (locally, in app documents folder). I want to problematically export this table data in a csv file and email it to a person. Export SQLite data to Excel in iOS programmatically - I tried this, but its not working... Can anybody give an example application to download? Or the code?
Currently, I am using these commands in command line to convert a db table to csv - .mode, .output out.csv, select * from table;
Please help