Fielu
Mitglied
Ich versuche mich derzeit in Mysql einzuarbeiten und habe mir dafür einges an Literatur besorgt.
Ein Beispiel das ich nachmachen wollte funktioniert leider nicht bei mir.
Beim Versuch folgende Datenbank anzulegen bekomme darunterstehende Fehlermeldung:
CREATE TABLE benutzer (
id int(10) NOT NULL auto_increment,
Benutzer text NOT NULL,
Passwort text NOT NULL,
EMail text NOT NULL,
Name text NOT NULL,
Vorname text NOT NULL,
PRIMARY KEY (id),
) TYPE=MyISAM;
#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 ') TYPE=MyISAM' at line 9
Ich kann Version 5.0 bei strato nutzen.
Was genau ist dieses MyLSAM?
Ein Beispiel das ich nachmachen wollte funktioniert leider nicht bei mir.
Beim Versuch folgende Datenbank anzulegen bekomme darunterstehende Fehlermeldung:
CREATE TABLE benutzer (
id int(10) NOT NULL auto_increment,
Benutzer text NOT NULL,
Passwort text NOT NULL,
EMail text NOT NULL,
Name text NOT NULL,
Vorname text NOT NULL,
PRIMARY KEY (id),
) TYPE=MyISAM;
#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 ') TYPE=MyISAM' at line 9
Ich kann Version 5.0 bei strato nutzen.
Was genau ist dieses MyLSAM?