03/04/2005, 15:11
|
| | Fecha de Ingreso: abril-2005
Mensajes: 4
Antigüedad: 19 años, 7 meses Puntos: 0 | |
PUes mirad, uno de los errores al intentar subir una de las tablas es el siguiente:
Código:
Base De Datos zonelinux_es_db
Error
SQL-query : [Editar]
CREATE TABLE `cpg_albums` (
`aid` int(11) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`description` text NOT NULL,
`visibility` int(11) NOT NULL default '0',
`uploads` enum('YES','NO') NOT NULL default 'NO',
`comments` enum('YES','NO') NOT NULL default 'YES',
`votes` enum('YES','NO') NOT NULL default 'YES',
`pos` int(11) NOT NULL default '0',
`category` int(11) NOT NULL default '0',
`pic_count` int(11) NOT NULL default '0',
`thumb` int(11) NOT NULL default '0',
`last_addition` datetime NOT NULL default '0000-00-00 00:00:00',
`stat_uptodate` enum('YES','NO') NOT NULL default 'NO',
PRIMARY KEY (`aid`),
KEY `alb_category` (`category`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1
MySQL ha dicho:
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=1' at line 17
|