Is it possible to store an Image file (.jpg, .gif, etc) in MYSQL database? Or do it just stores in system and takes reference path of image?
I am using ASP.NET C#, so if you have sample code, it would be great if you could share it.
feedback
|
|
Yes, you can store image files (and any other files) in a database as binary data. In MySQL, the
| |||||
feedback
|
|
First of here a post which is pretty similar to this one: Should I store my images in the database or folders? Secondly a sample for storing images into database: http://www.dotnetcurry.com/ShowArticle.aspx?ID=129&AspxAutoDetectCookieSupport=1 In my opinion it depends whether you choose to store images in your database or in folders. Both methods have there pros and cons. Here a short comment from asp.net forums:
| ||||
feedback
|
|
4GuysFromRolla.com has an article on this that I used as reference when I was writing code to store binary data directly in a database: http://www.4guysfromrolla.com/articles/120606-1.aspx Personally I find it to be far less trouble to store the image in the filesystem and a pointer in the database. | |||
feedback
|
|
You have to create a byte array from the image and store that in the database.
To convert the data back to an image:
| ||||
|
feedback
|
|
Take this... ASP.NET Image uploading with Resizing You can find variety of examples. | |||
|
feedback
|
|
My company currently uses a database with BLOB data for documents and images, and we are trying to mOve it over to only storing references to the files on the server. The databse is many many GBs, when it should be 20 MB. I would recommend against BLOB because it definitely slows down the DB. | |||
feedback
|