I created a table in Power Designer as shown below
create table BANCO
(
COD_BANCO integer not null auto_increment,
NOME_BANCO varchar(50),
AGENCIA_BANCO integer,
CONTA_BANCO integer,
GERENTE_BANCO varchar(20),
FONE_BANCO varchar(10),
primary key (COD_BANCO)
)
type = InnoDB;
however, it generated this error
error 1064 (42000)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 11
It's because Power Designer is working with MySQL 5 and what's installed on my pc is MySQL 5.5
How do I resolve this problem? will I have to install the MySQL 5 version?