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
2010-06-22 02:35:58
Blob is another option, if you want the server to pass the database back and forth verbatim, without worrying about charset issues.
Marc B
2010-06-22 02:53:36