扫码关注官方订阅号
创建表是提示#1286 - Unknown storage engine 'InnoDB'
存储引擎关了?
show engines:
看一下Innodb的情况。
以及my.ini中这行语句
default-storage-engine=INNODB
[SQL] create table s7_note
(
id mediumint unsigned not null auto_increment comment 'Id',
title varchar(100) not null comment '标题',
content longtext not null comment '内容',
addtime datetime default null comment '添加时间',
ip int not null comment 'IP地址',
primary key(id)
)engine=InnoDB default charset utf8 comment '留言表';
[Err] 1286 - Unknown storage engine 'InnoDB'
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
存储引擎关了?
show engines:
看一下Innodb的情况。
以及my.ini中这行语句
default-storage-engine=INNODB
[SQL] create table s7_note
(
id mediumint unsigned not null auto_increment comment 'Id',
title varchar(100) not null comment '标题',
content longtext not null comment '内容',
addtime datetime default null comment '添加时间',
ip int not null comment 'IP地址',
primary key(id)
)engine=InnoDB default charset utf8 comment '留言表';
[Err] 1286 - Unknown storage engine 'InnoDB'