I am using cleardb on heroku to setup a codeigniter application but I have been getting errors even though the values I have inserted were all correct. I am providing all the details of the configuration below as this is just a test app. I am also posting a screen shot of the errors, any tips would be appreciated. Please do not tell me about how i should use mysqli or PDO instead of this as I have looked at the support and it doesn't exist yet.
$active_group = 'default';
$active_record = TRUE;
$url=parse_url(getenv("mysql://be581f53f6c3cc:e3dffb73@us-cdbr-east-05.cleardb.net/heroku_29745033f6a8f32?reconnect=true"));
$db['default']['hostname'] = 'us-cdbr-east-05.cleardb.net';
$db['default']['username'] = $url["be581f53f6c3cc"];
$db['default']['password'] = $url["e3dffb73"];
$db['default']['database'] = substr($url["heroku_29745033f6a8f32"],1);
$db['default']['dbdriver'] = 'mysql';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
$db['default']['db_debug'] = TRUE;
$db['default']['cache_on'] = FALSE;
$db['default']['cachedir'] = '';
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
$db['default']['swap_pre'] = '';
$db['default']['autoinit'] = TRUE;
$db['default']['stricton'] = FALSE;
Here are the errors