Soham
Soham

Reputation: 15

Excel To SQLite in android

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

Answers (2)

aNiKeT
aNiKeT

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

user1448729
user1448729

Reputation:

Just export your Excel data to CSV format and Import from Sqlite Browser source CSV

enter image description here

Upvotes: 2

Related Questions