par
Boro64 » 19 juil. 2013, 16:57
1-) La table:
CREATE TABLE IF NOT EXISTS `test_client_atlas` (
`id_client` int(250) unsigned NOT NULL AUTO_INCREMENT,
`nom_client` tinytext COLLATE utf8_unicode_ci NOT NULL,
`adresse_client` text COLLATE utf8_unicode_ci NOT NULL,
`tel_client` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`email_client` tinytext COLLATE utf8_unicode_ci NOT NULL,
`mot_passe` text COLLATE utf8_unicode_ci NOT NULL,
`date_crea` date NOT NULL,
`date_modif` date NOT NULL,
UNIQUE KEY `id_client` (`id_client`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
2-) une ligne de la table:
-- Contenu de la table `test_client_atlas`
--
(57, ' Rudyard Kipling ', ' 1 Boulevard des lianes 00000 Là-bas', ' xx-xx-xx-xx-xx ', ' [email protected] ', ' $5$rounds=50$Pt4M6o8As0vt8o8FX.c93dcg.VxqjALXMnFmNBfC3C6 ', '2013-07-19', '0000-00-00'),
Merci du coup de main (comme d'hab....

)
1-) La table:
[sql]
CREATE TABLE IF NOT EXISTS `test_client_atlas` (
`id_client` int(250) unsigned NOT NULL AUTO_INCREMENT,
`nom_client` tinytext COLLATE utf8_unicode_ci NOT NULL,
`adresse_client` text COLLATE utf8_unicode_ci NOT NULL,
`tel_client` varchar(20) COLLATE utf8_unicode_ci NOT NULL,
`email_client` tinytext COLLATE utf8_unicode_ci NOT NULL,
`mot_passe` text COLLATE utf8_unicode_ci NOT NULL,
`date_crea` date NOT NULL,
`date_modif` date NOT NULL,
UNIQUE KEY `id_client` (`id_client`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;[/sql]
2-) une ligne de la table:
[sql]-- Contenu de la table `test_client_atlas`
--
(57, ' Rudyard Kipling ', ' 1 Boulevard des lianes 00000 Là-bas', ' xx-xx-xx-xx-xx ', '
[email protected] ', ' $5$rounds=50$Pt4M6o8As0vt8o8FX.c93dcg.VxqjALXMnFmNBfC3C6 ', '2013-07-19', '0000-00-00'),
[/sql]
Merci du coup de main (comme d'hab.... :mrgreen: )