How to convert database storage engine from InnoDB to MyISAM on MySQL?
I found so many sites which convert the storage engine of database table, but not for database.

Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t change the default storage engine for a database, but you can change it for the whole server using the
default-storage-engineconfig setting. Note that this will not actually change the storage engine for existing tables though, just for new ones created after the change.