i'm using varchar for one of the columns.
varchar can only go up to 255 bytes, i.e. varchar(255) it can't go any higher.
I need this column to hold more than 255. What other string type should I use?
this is for MySQL. (possibly portable to Oracle later on).