Hallo,
ich nutze MySQL 4.1.8 in der Apache Distribution XAMPP (Version 1.4.11) und phpMyAdmin in der Version 2.6.0..
Wenn ich nun eine neue InnoDB-Tabelle anlegen möchte, dann erscheint trotzdem MyISAM als Tabellentyp. Z.B.:
Was mache ich falsch?
ich nutze MySQL 4.1.8 in der Apache Distribution XAMPP (Version 1.4.11) und phpMyAdmin in der Version 2.6.0..
Wenn ich nun eine neue InnoDB-Tabelle anlegen möchte, dann erscheint trotzdem MyISAM als Tabellentyp. Z.B.:
Code:
CREATE TABLE `autor` (
`id` int(10) NOT NULL ,
`name` varchar(128) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `NAME` (`name`)
) TYPE=InnoDB;
Was mache ich falsch?
Zuletzt bearbeitet von einem Moderator: