Harzteufel
Erfahrenes Mitglied
Hallo,
da ich mich nicht sonderlich gut im Bereich der Programmierung/Datenbanken auskenne und ich beim Installieren eines Scriptes folgende Fehlermeldung erhalte...
#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 'DEFAULT CHARSET=latin1 AUTO_INCREMENT=12' at line 10
...wende ich mich an euch! Ich hoffe, ihr könnt mir weiterhelfen
Der SQL-Code:
CREATE TABLE kommentare (
id int(11) NOT NULL auto_increment,
nid int(11) NOT NULL default '0',
zeit int(11) NOT NULL default '0',
kommentar longtext NOT NULL,
autor varchar(255) NOT NULL default '',
ok int(1) NOT NULL default '0',
PRIMARY KEY (id),
KEY nid (nid)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
Vielen Dank für eure Bemühungen!
Mfg Harzteufel
da ich mich nicht sonderlich gut im Bereich der Programmierung/Datenbanken auskenne und ich beim Installieren eines Scriptes folgende Fehlermeldung erhalte...
#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 'DEFAULT CHARSET=latin1 AUTO_INCREMENT=12' at line 10
...wende ich mich an euch! Ich hoffe, ihr könnt mir weiterhelfen
Der SQL-Code:
CREATE TABLE kommentare (
id int(11) NOT NULL auto_increment,
nid int(11) NOT NULL default '0',
zeit int(11) NOT NULL default '0',
kommentar longtext NOT NULL,
autor varchar(255) NOT NULL default '',
ok int(1) NOT NULL default '0',
PRIMARY KEY (id),
KEY nid (nid)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
Vielen Dank für eure Bemühungen!
Mfg Harzteufel