I want to store an image(from url) into a sqlite database.
For that I use:
db = new DataBase(getApplicationContext()); URL url = new URL(\"http://sr
In insert()
public void insert(String tableImg, Object object, ContentValues dataToInsert) { db.insert(tablename, null, dataToInsert); }
Hope it helps you.