par
musatge » 25 juil. 2010, 11:31
Bonjour et merci Ch.
Voici la structure de la table:
CREATE TABLE IF NOT EXISTS `inscrits` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`identifiant` varchar(20) NOT NULL,
`motdepasse` varchar(32) NOT NULL,
`courriel` varchar(255) NOT NULL COMMENT 'adresse courriel du visiteur',
`date` int(10) NOT NULL DEFAULT '0',
`active` enum('0','1') NOT NULL DEFAULT '0',
`clef` varchar(8) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
donc le moteur utilisé est MEMORY , rien que l'intitulé me fait comprendre qu'il faut que je change le moteur.
Je passe en InnoD, formidable ça marche, encore merci
Dominique
Bonjour et merci Ch.
Voici la structure de la table:
[sql]
CREATE TABLE IF NOT EXISTS `inscrits` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`identifiant` varchar(20) NOT NULL,
`motdepasse` varchar(32) NOT NULL,
`courriel` varchar(255) NOT NULL COMMENT 'adresse courriel du visiteur',
`date` int(10) NOT NULL DEFAULT '0',
`active` enum('0','1') NOT NULL DEFAULT '0',
`clef` varchar(8) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
[/sql]
donc le moteur utilisé est MEMORY , rien que l'intitulé me fait comprendre qu'il faut que je change le moteur.
Je passe en InnoD, formidable ça marche, encore merci
:D
Dominique