How would someone store a image in MySql ? Would I have to store it as a Blob ?
That's if its even possible can't see why it wouldn't be though.
How would someone store a image in MySql ? Would I have to store it as a Blob ?
That's if its even possible can't see why it wouldn't be though.
You can use BLOB to store images in database. But I think recommended way is to store the image path in the database not the whole image
You can always store the file path for where the image is located, instead of actually storing the image itself.
You can store images in database if you require security. But if you store image as blob it slow down your application. Retrieving images from folder is much faster. and another problem is If database is corrupted, no way to retrieve.