在Mysql6.0中执行:create table JBPM_BYTEARRAY (ID_ bigint not null auto_increment, NAME_ varchar(255), FILEDEFINITION_ bigint, primary key (ID_)) type=InnoDB;
出现错误: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 1,
把type=InnoDB去掉,可以成功.
把type=InnoDB改成ENGINE=InnoDB,也可以成功,
type和engine都能决定表使用的引擎,如果没有type将使用mysql安装时默认的default engine,default engine可以在mysql的配置文件里修改。
今天在使用mysql query browser的时候发现当使用type建表的时候,出现了。
The syntax 'TYPE=storage_engine' is deprecated and will be removed in MySQL 5.2. Please use 'ENGINE=storage_engine' instead
type是向下兼容的。推荐使用engine。