when trying to import my sql file i get the below error. Can someone please point out whats causing the issue for me? (sorry, im a noob)
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '?--
-- Tabel structuur voor tabel `bescherming`
--
CREATE TABLE `bescher' at line 1
here is what im trying to insert
SQL query:
--
-- Tabel structuur voor tabel `bescherming`
--
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