Goofy Geplaatst: 3 april 2006 Rapport Geplaatst: 3 april 2006 Ik probeer dit uitevoeren in phpMyAdmin CREATE TABLE `woorden` ( `id` int(11) NOT NULL auto_increment, `woord` text collate latin1_general_ci NOT NULL, `antwoord` text collate latin1_general_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1685; #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 'collate latin1_general_ci NOT NULL, `antwoord` text collate Ik heb zelf niet zo gek veel verstand van MySQL maar ik geen idee waar te zoeken of wat er mis is. Reageren
Argon Geplaatst: 3 april 2006 Rapport Geplaatst: 3 april 2006 CREATE TABLE `woorden` ( `id` int( 11 ) NOT NULL AUTO_INCREMENT , `woord` text NOT NULL , `antwoord` text NOT NULL , PRIMARY KEY ( `id` ) ) Ik heb het bij mij getest en dit werkt. Reageren
Marius Geplaatst: 3 april 2006 Rapport Geplaatst: 3 april 2006 Ik zou zeggen probeer het zo nog eens: CREATE TABLE `woorden` ( `id` INT NOT NULL auto_increment, `woord` TEXT NOT NULL, `antwoord` TEXT NOT NULL, PRIMARY KEY (`id`) ) AUTO_INCREMENT=1685; * EDIT De post van Juuldr stond er nog niet toen ik bezig was dit bericht te typen. Reageren
Goofy Geplaatst: 3 april 2006 Auteur Rapport Geplaatst: 3 april 2006 Ik zou zeggen probeer het zo nog eens: CREATE TABLE `woorden` ( `id` INT NOT NULL auto_increment, `woord` TEXT NOT NULL, `antwoord` TEXT NOT NULL, PRIMARY KEY (`id`) ) AUTO_INCREMENT=1685; * EDIT De post van Juuldr stond er nog niet toen ik bezig was dit bericht te typen. bedankt hij doet het nu Reageren
Argon Geplaatst: 3 april 2006 Rapport Geplaatst: 3 april 2006 Maar bij die van Marius, staat de auto_imcremet erbij. Dus als je wilt dat id begint bij 1685, moet je die van Marius gebruiken. Reageren
Recommended Posts
Een reactie plaatsen
Je kan nu een reactie plaatsen en pas achteraf registreren. Als je al lid bent, log eerst in om met je eigen account een reactie te plaatsen.