Hi i want to store images into database.I created table with fields like imgID tinyint, image blob. But i have a little bit confusion on it.Can any body tel me how can i do that? Thanks in advance.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

You should convert Images/Bitmaps into byte array and then add it to the database as blob. Read this post

link|improve this answer
feedback

I've always stored the image file name/location. And just linked to it ... without storing the image as a blob.

Its simpler: database won't get massive and functionally it does almost the same thing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.