Reputation: 2007
I am having data in a excel sheet, It is large data i want to import all the data in excel to sqlite3, I am using this data for iPhone.
Thanks
Upvotes: 1
Views: 4753
Reputation: 332621
Use the .import command:
.separator ","
.import excel_export.csv your_table
Reference:
Upvotes: 4