The following mysql error pops up while importing a database Error SQL query: CREATE TABLE `test` ( `name` varchar( 50 ) NOT NULL default '', `url` text NOT NULL , `test` text NOT NULL , `time` int( 10 ) NOT NULL default '0', PRIMARY KEY ( `name` , `time` ) ) ENGINE = MYISAM DEFAULT CHARSET = latin1 MySQL said: Documentation #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 'DEFAULT CHARSET=latin1' at line 7 Can someone please tell me what this means and how to fix? Greetz! Mieke
The semicolon is needed only if he puts multiple queries in one file and executes it. Otherwise thats not the issue. changing to utf8 should work Thanks Lavee
For the initial poster. You will need to replace all occurences within the dump file if there is more than one table. Do not use a word processor to open you file and replace the text. Notepad with word wrap off is okay.
Hy You can tell me what is meaning of this sentence "ENGINE = MYISAM DEFAULT CHARSET = latin1" I don't getting this line what it want to tell