pub async fn create_mysql_database<'a>(
    database_url: &str,
    db_name: &'a str
) -> Result<(&'a str, String), Box<dyn Error + Send + Sync + 'static>>
Expand description

Returns a connection to the new database, as well as the corresponding complete connection string.