Hi, I install Mysql 4.1.12-0 by rpm. When I try to create a table, it give me "Lost connection to MySQL server during query". My query is like: CREATE TABLE ArrayBatch ( id int(11) NOT NULL auto_increment, arrayType int(11) NOT NULL default '0', descr text NOT NULL, printStartDate datetime NOT NULL default '0000-00-00 00:00:00', printEndDate datetime NOT NULL default '0000-00-00 00:00:00', owner int(11) NOT NULL default '0', name varchar(80) NOT NULL default '', addedDate date NOT NULL default '0000-00-00', surfaceType varchar(255) NOT NULL default '', protocol int(11) NOT NULL default '0', notes text NOT NULL, removed tinyint(1) NOT NULL default '0', gid int(11) NOT NULL default '0', groupAccess tinyint(1) NOT NULL default '0', worldAccess tinyint(1) NOT NULL default '0', PRIMARY KEY (id), KEY arrayType (arrayType), KEY name (name) ) TYPE=MyISAM;
But when I try to create some simple table, it works. Is it bug or I did something wrong? Hope someone can give me help. regards, Ying