Mysql InnoDB 数据库
我的所有表都是 InnoDB,但 PHPMyAdmin 显示数据库是 MyIsam: http://img708.imageshack .us/i/201103080940551280x800s.png/ 如何使用 InnoDB 创建新的 MySQL 数据库? 在 Debian Sid 盒子中运行 MySQL 5.1。 谢谢。
All of my tables are InnoDB but PHPMyAdmin shows that the database is MyIsam: http://img708.imageshack.us/i/201103080940551280x800s.png/
How do I create new MySQL databases using InnoDB?
Running MySQL 5.1, in a Debian Sid box.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
更多
发布评论
评论(2)
据我所知,它显示的是 MyISAM,因为这是该数据库上的默认存储引擎,即,如果您要创建一个新表并且不指定引擎,那么它将是 MyISAM。
您可以在 my.cnf 文件中更改默认存储引擎:
AFAIK it is showing MyISAM because that is your default storage engine on that database, i.e. if you were to create a new table and not specify the engine then it would be MyISAM.
You can change the default storage engine in your my.cnf file:
使用 MySQL Workbench 进行 GUI 界面:
http://wb.mysql.com/
您也可以直接使用 SQL:
Use MySQL Workbench for GUI interface:
http://wb.mysql.com/
You can it directly using SQL also: