How to insert image into database using Java / How to retrieve image data from database in Java
Scenario In practical applications, when you create a profile (of a User or a Company say), you are required to maintain a picture or an icon to uniquely identify the entity so that every time the user or company visits the application, it finds the same picture which was last uploaded over the application. For Example, when a Facebook user uploads his picture, it is added to his photos list and every time he logs in, he can see the picture in that list. This can be done when you save the picture somewhere and retrieve it from there every time its required. A databaseRead More →