Ecillipilla
09-29-2008, 11:33 PM
Can someone please tell me why this query returns error #1064.
I'm running it through phpmyadmin installed on a FQ server.
The goal is to import a .sql file, I can import the file on various free mysql providers but I can't understand why it won't work on FQ. :umm:
CREATE TABLE `bescherming` (
`id` int(1) NOT NULL auto_increment,
`type` int(1) NOT NULL default '0',
`minuten` int(255) NOT NULL default '0',
`prijs` int(255) NOT NULL default '0',
`naam` varchar(255) NOT NULL default '',
`time` int(255) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
This is the very start of the .sql file ^^
I'm running it through phpmyadmin installed on a FQ server.
The goal is to import a .sql file, I can import the file on various free mysql providers but I can't understand why it won't work on FQ. :umm:
CREATE TABLE `bescherming` (
`id` int(1) NOT NULL auto_increment,
`type` int(1) NOT NULL default '0',
`minuten` int(255) NOT NULL default '0',
`prijs` int(255) NOT NULL default '0',
`naam` varchar(255) NOT NULL default '',
`time` int(255) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
This is the very start of the .sql file ^^