Users have asked for details on how to have their Mango instances use MySQL instead of Derby. Note first that there is currently no conversion mechanism between the two. When you switch to MySQL, you are creating an entirely new instance of Mango. (The import/export utility will be of use getting some configuration over.) Note secondly that this only applies to the commercial version.
Edit the <tomcat-webapps>/<mango-dir>/WEB-INF/classes/env.properties file. By default the settings of concern will be:
db.type=derby
db.url=~/../../mangoDB
db.username=
db.password=
You will need to change this to:
db.type=mysql
db.url=<url to mysql>
db.username=<mysql username>
db.password=<mysql password>
The url to mysql will look something like this: "jdbc:mysql://localhost/mango". You should not need to install the mysql connector classes into Mango since the jar file ships with Mango anyway.