Code: Alles auswählen
#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 5
Code: Alles auswählen
#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 5
Forumsregeln
Bei Mod spezifischen Fragen sollte man den Modnamen und die Downloadquelle des Mods angeben, besser noch die URL vom betroffenen Forum
Code: Alles auswählen
CREATE TABLE `phpbb_impressum` (
`name` smallint(2) NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
`aktiv` smallint(1) NOT NULL default '0'
) TYPE=MyISAM;
Code:Select All
INSERT INTO `phpbb_impressum` (`name`, `value`, `aktiv`) VALUES
(1, '', 1),
(2, '', 1),
(3, '', 1),
(4, '', 1),
(5, '', 1),
(6, '', 1),
(7, '', 1),
(8, '', 0),
(9, '', 1),
(10, '', 1),
(11, '', 1)
da?Code:Select All
ist unvollständig, was zwangsläufig beim Ausführen im phpmyadmin zu Fehlern führt !manu2011 hat geschrieben:Code: Alles auswählen
INSERT INTO `phpbb_impressum` (`name`, `value`, `aktiv`) VALUES (1, '', 1), (2, '', 1), (3, '', 1), (4, '', 1), (5, '', 1), (6, '', 1), (7, '', 1), (8, '', 0), (9, '', 1), (10, '', 1), (11, '', 1)
Code: Alles auswählen
INSERT INTO `phpbb_impressum` (`name`, `value`, `aktiv`) VALUES
(1, '', 1),
(2, '', 1),
(3, '', 1),
(4, '', 1),
(5, '', 1),
(6, '', 1),
(7, '', 1),
(8, '', 0),
(9, '', 1),
(10, '', 1),
(11, '', 1),
(12, '', 1),
(13, '', 1),
(14, '', 1),
(15, '', 1),
(16, '', 1),
(17, '', 1),
(18, '', 1),
(19, '', 1);