which data type should I use for storing an image in sqlLite database table??
the following is my attempt:
@Override
public void onCreate(SQLiteDatab
Saving Images in to Sqlite is bad idea. You should save its path in to sqlite. Images are big in size comparing to textual information.
It would be hard for saving and retrieving images from sqlite.
So, I would like suggest you to store images in external folder and store its path in to sqlite database.