kiri
kiri

Reputation: 2007

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 import all the data in excel to sqlite3, I am using this data for iPhone.

Thanks

Upvotes: 1

Views: 4753

Answers (1)

OMG Ponies
OMG Ponies

Reputation: 332621

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

    .separator ","
    .import excel_export.csv your_table
    

Reference:

Upvotes: 4

Related Questions