ok, here is the info from the cPanel:
wag_blog
Users in blog
wag_wordpress (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect(“DBI:mysql:wag_blog:localhost”,”wag_wordpress”,”<PASSWORD HERE>”);
PHP $dbh=mysql_connect (“localhost”, “wag_wordpress”, “<PASSWORD HERE>”) or die (‘I cannot connect to the database because: ‘ . mysql_error());
mysql_select_db (“wag_blog”);
and the info in the wp-config.php file:
<?php
// ** MySQL settings ** //
define(‘DB_NAME’, ‘wag_blog’); // The name of the database
define(‘DB_USER’, ‘wag_wordpress’); // Your MySQL username
define(‘DB_PASSWORD’, ‘XxxxxxxxX’); // …and password
define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value