I just wrote up a quick php file to test being able to connect to mysql:
mysql_connect(“localhost”, “username”, “password”) or die(mysql_error());
mysql_select_db(“wordpress”) or die(mysql_error());
echo “Connected to database”;
This worked and I was able to connect using the designated database and user that I’m using in the wp-admin/install.php file.