http://dev.mysql.com/doc/refman/5.0/...-overview.html
TEXT[(M)]
A TEXT column with a maximum length of 65,535 (216 – 1) characters.
An optional length M can be given. Then MySQL will create the column as the smallest TEXT type large enough to hold values M characters long.
BLOB[(M)]
A BLOB column with a maximum length of 65,535 (216 – 1) bytes.
An optional length M can be given for this type. If this is done, then MySQL will create the column as the smallest BLOB type large enough to hold values of M bytes.
posta la struttura della tua tabella.. forse hai creato la varchar piazzandoci sopra qualche indice (non farlo!!! indici su varchar da 255 caratteri non sono il top :/) e per questo non te lo fa convertire...
un campo TEXT *non può essere* chiave primaria, ne avere associati indici "unique" ne "index"... l'unica cosa che puoi farci è metterci un fulltext index ;)
Ultima modifica di Evcz : 29-11-2005 alle ore 22.21.53
There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...