开发者

How do i import a xls file data into sqlite3

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


  1. Export the Excel file to CSV format
  2. Use the .import command:

    .separator ","
    .import excel_export.csv your_table
    

Reference:

  • documentation
  • Importing Files
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜