opps I notice that the error is for hpisavag_@localhost. I've tried both of them hpisavag_ and hpisavag_admin. both of them have all privliged and both of them get the same error.
Here is what I have for mysql
Quote:
hpisavag_hpisavagvbulletinTest
Users in hpisavagvbulletinTest
hpisavag_ (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:hpisavag_hpisavagvbulletinTest:localhost","hpisavag_","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "hpisavag_", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("hpisavag_hpisavagvbulletinTest");
hpisavag_admin (Privileges: ALL PRIVILEGES)
Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:hpisavag_hpisavagvbulletinTest:localhost","hpisavag_admin","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "hpisavag_admin", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("hpisavag_hpisavagvbulletinTest");
|