I was developing a small WAMP web application on my laptop, where I have an instance of mySQL, and I chose InnoDB for my DB engine. After several weeks of development, I wanted to make it available to the public and found out that the database server provided by my web host does not support InnoDB, but only MyISAM.
Created and created from the innoDB schema on my laptop, the created and populated script, when it is executed with a live database, can create separate tables, but then encounters the problems of creating VIEW. Views not supported in MyISAM? I know that FOREIGN KEYS are not. That's why I made InnoDB ... What are my chances for my innoDB schema project to work with myISAM?
Is there an easy way to convert an entire schema from one storage engine to another? Should I look for another web host that provides mysql db that supports innoDB?
source
share