which data type should I use for storing an image in sqlLite database table??
the following is my attempt:
@Override
public void onCreate(SQLiteDatab
Refer to the SQLite documentation on datatypes.
You probably want a BLOB type, also known as "binary blob" or "Binary Long OBject". Just be aware that storing really big things in an SQLite database isn't necessarily a good idea - images are usually better off stored in the filesystem if you can manage it.