How can I set a MySQL database to use MyISAM by default?
Answers
Answered by
0
The default engine is InnoDB as of MySQL 5.5.5 ( MyISAM before 5.5.5). You can specify the default engine by using the --default-storage-engine server startup option, or by setting the default-storage-engine option in the my.cnf configuration file.
Similar questions