Importation d'une table dans phpmysql

al ali -  
totodunet Messages postés 1377 Date d'inscription   Statut Membre Dernière intervention   -
slt atous g voulais importer cet table et voici ce qu'on affiche ci-dessous comment regler ca merci

create table classement
(numclass MEDIUMINT NOT NULL AUTO_INCREMENT ,
nom VARCHAR( 60 ) NOT NULL ,
score INT NOT NULL ,
INDEX (numclass)
) TYPE = innodb;

MySQL a répondu: 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 'TYPE = innodb' at line 6

1 réponse

totodunet Messages postés 1377 Date d'inscription   Statut Membre Dernière intervention   200
 
salut,

essayes avec " InnoDB ", c'est certainement sensible à la casse pour spécifier le type de moteur
0