I am having data in a excel sheet, It is large data i want to im开发者_StackOverflowport all the data in excel to sqlite3, I am using this data for iPhone.
Thanks
- Export the Excel file to CSV format
Use the .import command:
.separator "," .import excel_export.csv your_table
Reference:
- documentation
- Importing Files
精彩评论