phpMyAdmin - 错误:关系功能被禁用

2022-01-05 00:00:00 mysql phpmyadmin relational-database

当我想使用 phpMyAdmin 4.3.8 在设计器模式下创建两个表之间的关系时,它给我一个错误消息:错误:关系功能被禁用!当我用 4.1.4 尝试它时,它工作得很好.我似乎找不到应该在哪里更改设置才能在设计器模式下创建关系.任何的想法?提前致谢!

When I want to create a relation between two tables in designer mode with phpMyAdmin 4.3.8, it gives me an error saying: Error: relational features are disabled! When I try it with 4.1.4, it works just fine. I can't seem to find where I should change the settings to be able to create relations in designer mode. Any idea? Thanks in advance!

推荐答案

使用

ALTER TABLE table_name ENGINE=InnoDB;

相关文章