Sxooter wrote:are you using ODBC or something like that to interface to the database? I'm guessing something in your setup is artificially limiting the max size of your text types, and one of the most common of those is odbc converting text to varchar(255). I think it's the "memo" type that's longer, but I'm not sure. Got more info you can help us help you with?
Ive been using the mysql consolse directly in linux, could it be that i have been using the mysql-small.cnf file?
create table forum (
forum_id int not null auto_increment,
forum_fid int not null,
forum_name char(40),
forum_text text,
user_id int not null,
forum_date int not null,
primary key(forum_id))