Reputation: 15
I am working on a project where I have to save images in database using excel sheet. I mean how to store images in excel sheet and link that sheet to sqllite database?
Upvotes: 1
Views: 2832
Reputation: 96
You can import that Excel File in the 'SQLite Database Browser' (download from http://sourceforge.net/projects/sqlitebrowser/).
Create an external database, open your project and place that database file in your asset folder, then read from it.
Upvotes: 1
Reputation:
Just export your Excel data to CSV format and Import from Sqlite Browser source CSV
Upvotes: 2