Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/04/2011, 17:12
gersonmaba
 
Fecha de Ingreso: abril-2007
Mensajes: 156
Antigüedad: 17 años
Puntos: 3
Porque Sale este Error en

Porque me sale este, error, no entiendo el error no veo ninguno.. muchas gracias por la colaboracion y ayuda de todos.


#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=InnoDB' at line 6

Tablas.

CREATE TABLE conceptos (
idconceptos INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
concepto VARCHAR(60) NULL,
PRIMARY KEY(idconceptos)
)
TYPE=InnoDB;

CREATE TABLE conjuntos (
idconjuntos INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,
centrocostos INTEGER UNSIGNED NOT NULL,
nit VARCHAR(30) NOT NULL,
nombre VARCHAR(80) NOT NULL,
direccion VARCHAR(150) NULL,
telefonos VARCHAR(60) NULL,
aguacaliente SMALLINT UNSIGNED NULL,
cuentacontableadmon VARCHAR(60) NULL,
imagen BLOB NULL,
nombreadmin VARCHAR(150) NOT NULL,
cedulaadmin VARCHAR(30) NOT NULL,
celularadmin VARCHAR(15) NULL,
emailadmin VARCHAR(60) NULL,
fechainicio DATE NULL,
fechacierre DATE NULL,
PRIMARY KEY(idconjuntos)
)
TYPE=InnoDB;

Gracias