My question is about the Type of db that is on a shared hosting Linux server. phpMyAdmin shows that db has MyISAM Type. I don’t think I can change it. I mean I don’t know.
All tables in that db have InnoDB type.
Does it make sense to change db type to InnoDB? Should I? (I don’t know if I can choose a db type on a shared hosting server).
Of course I can contact a customer support and ask them to switch if they can, but I don’t know if it makes any sense and has any pros.
Should I take care of it?
Thank you
.
Added: The image above is a screenshot from phpMyAdmin.
This is the default storage engine of the server. If you do not specify a storage engine when creating a table then the server picks MyISAM as the default
For example on my server InnoDB is the default.
Also in answer to your second question. Yes you can change the storage engine. You can do this with the ALTER TABLE command.
I suggest not to change storage engines unless you have a specific need for a feature in an engine.