Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to store my image data into my MySQL database or table. What appropriate data type in MySQL should I use to store the image data?

share|improve this question
2  
BLOB i think is the choice – Ibu May 25 '11 at 6:49

1 Answer

up vote 6 down vote accepted

You can use one of this field types:

BLOB        L + 2 bytes, where L < 2^16
MEDIUMBLOB  L + 3 bytes, where L < 2^24
LONGBLOB    L + 4 bytes, where L < 2^32
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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