vote up 5 vote down star
1

If I don't know the length of a text entry (e.g. a blog post, description or other long text), what's the best way to store it in MYSQL?

flag

3 Answers

vote up 6 vote down check

TEXT would be the most appropriate for unknown size text. VARCHAR is limited to 65,535 characters from MYSQL 5.0.3 and 255 chararcters in previous versions, so if you can safely assume it will fit there it will be a better choice.

BLOB is for binary data, so unless you expect your text to be in binary format it is the least suitable column type.

For more information refer to the Mysql documentation on string column types.

link|flag
vote up 0 vote down

How much difference does BLOB or TEXT make in comparison with VARCHAR()? vote up 3 vote down star

If I don't know the length of a text entry (e.g. a blog post, description or other long text), what's the best way to store it in MYSQL?

link|flag
vote up 0 vote down

use TEXT if you want it treated as a character string, with a character set.
use BLOB if you want it treated as a binary string, without a character set.

I recommend using TEXT.

link|flag

Your Answer

Get an OpenID
or

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