I am an Android app developer. I am currently developing an application that requires me to display an image stored in sqlite database, can someone help me get the image from sqlite database and display it ... Thanks ..
I would start with:
db.rawQuery('SELECT imageBlob FROM Images WHERE imageID=?', new String[] {imageID});
Then save the result to a file (for this bit I donβt know for sure, new to Android and that's it).