|
The size limit of a TEXT field is 64k characters and MEDIUMTEXT is 16Mb, so depending on the OS and code you are using will likely both be held as a string type and therefore should make no difference in your code and little difference to the server.
LONGTEXT on the other hand can hold up to 4Gb so will need to be handled as a BLOB (Binary Large OBject) rather than a string so will make a difference to your coding.
If you are seriously concerned about exceeding the 64K limit use the mediumtext option from the start rather than have to change field types on a live database when problems occur.
__________________
Chris. ->> Links are advertising NOT optimising!! <<-
A foolish consistency is the hobgoblin of little minds
Thought for today:- I SEO the only industry where all the cowboys are Indians?
Last edited by chrishirst; 07-29-2006 at 02:46 PM..
Reason: hit enter too soon
|