detestableguy Posted July 4, 2011 Share Posted July 4, 2011 I wrote the following for handling DB errors...the problem is, with incorrect DB connection details, other than getting "Error: Could not connect!", I am also getting mysql_connect() error "Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'root'@'localhost' (using password: YES) in D:\xampplite\htdocs\web\testpages\oop\test.php on line 6 Error: Could not connect! " Can you anybody please tell me why am I getting mysql_connect() error?...to best of my knowledge, I should be getting only first one if I use incorrect infornation <?php class ServerException extends Exception{} try { if(!mysql_connect("localhost","root","")) { throw new ServerException("Could not connect!"); } } catch (ServerException $e) { echo "Error: ".$e->getMessage(); } ?> Quote Link to comment https://forums.phpfreaks.com/topic/241069-exception-handling-for-mysql-db/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.