CreateTables_2

Lost connection to MySQL server during query
CREATE TABLE IF NOT EXISTS `htracer_queries` ( `ID` int(11) unsigned NOT NULL AUTO_INCREMENT, `In` varbinary(255) NOT NULL COMMENT 'Key String', `Out` varbinary(255) NOT NULL COMMENT 'Sanitarized Key String', `Eva` float NOT NULL DEFAULT '0' COMMENT 'Weigth', `URL_CS` varbinary(32) NOT NULL COMMENT 'Link to htracer_pages', `OutEva` float NOT NULL DEFAULT '0' COMMENT 'Current weigth of Key (updated when htracer_pages.Eva15 changed)', `Version` smallint(6) unsigned NOT NULL DEFAULT '0' COMMENT 'ID of HTracer version that change Out or Status. User=10000', `Status` tinyint(4) unsigned NOT NULL DEFAULT '1' COMMENT '0 - disabled, 1 - enabled, 2 - moved to another page', `ShowInCLinks` tinyint(1) NOT NULL DEFAULT '1' COMMENT 'Is this key Enabled in forming contex links', PRIMARY KEY (`ID`), UNIQUE KEY `KeyAndURL` (`In`,`URL_CS`), #KEY `In` (`In`), KEY `OutEva` (`OutEva`), KEY `Status` (`Status`), KEY `CurentPage` (`URL_CS`,`Status`,`OutEva`,`Out`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin AUTO_INCREMENT=1 ;

You may need to turn on forcing in MySQL settings of HTracer