Buenas, pues haber si me podían ayudar en el siguiente error que me da el PHPMYADMIN al insertar mi código sql.
Error:
#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 ') ENGINE=MyISAM DEFAULT CHARSET=latin1' at line 12
Y aquí el código sql:
--
-- Estructura de tabla para la tabla `cms_radio`
--
CREATE TABLE IF NOT EXISTS `cms_radio` (
`radio_ip` text NOT NULL,
`radio_passw` text NOT NULL,
`radio_port` int(6) NOT NULL,
`radio_status` enum('on','off') NOT NULL DEFAULT 'on',
`radio_dj` int(15) NOT NULL DEFAULT '2',
`radio_name` text NOT NULL,
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Volcar la base de datos para la tabla `cms_settings`
--
INSERT INTO `cms_radio` (`radio_ip`, `radio_passw`, `radio_port`, `radio_status`, `radio_dj`, `radio_name`) VALUES
('localhost', '7shxb', '8080', 'on', 'ComVec', 'FM');
-- --------------------------------------------------------
Espero que me ayuden como siempre.
Gracias de antemano.
Saludos ComVec