tags:

views:

31

answers:

1

Currently i am setting it as varchar with a max length of 15000 - it is storing forum posts so they can vary in size a lot. Thanks!

+2  A: 

Try using TEXT data type. It is more convenient if you want to store really big strings.

Pablo Santa Cruz
Blob is another option, if you want the server to pass the database back and forth verbatim, without worrying about charset issues.
Marc B