How do I make a Mysql cell have infinite (you know what I mean) in character length?
Printable View
How do I make a Mysql cell have infinite (you know what I mean) in character length?
if I am not mistaken you can only go 255 characters.
I was mistaken ;)
anyway you are limited to how much you can hold.
http://www.mysql.com/documentation/m...e_requirements
LONGTEXT
A BLOB or TEXT column with a maximum length of 4294967295 (2^32 - 1) characters. See section 6.5.3.1 Silent Column Specification Changes. Note that because the server/client protocol and MyISAM tables has currently a limit of 16M per communication packet / table row, you can't yet use this the whole range of this type. See section 6.2.3.2 The BLOB and TEXT Types.
Thanks, found what I was looking for :)