Jump to content
Geplaatst:
comment_381408

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.

Featured Replies

Geplaatst:
comment_381432

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.

Geplaatst:
  • Auteur
comment_381439
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 :*D

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.

Gast
Op dit onderwerp reageren...

Recent actief 0

  • Er zijn hier geen geregistreerde gebruikers aanwezig.