Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to access my database(mysql) by making use of PDO. I am new in this scenario. In php.ini file, I enabled the following lines:

extension=php_pdo.dll
extension=php_pdo_dblib.dll
extension=php_pdo_firebird_firebird.dll
extension=php_pdo_firebird_interbase.dll
extension=php_pdo_mssql.dll
extension=php_pdo_mysql_mysqlnd.dll
extension=php_pdo_mysql_libmysql.dll
extension=php_pdo_odbc.dll
extension=php_pdo_pgsql.dll
extension=php_pdo_sqlite.dll
extension=php_pdo_sqlite_external.dll

Then I restart my xampp server. I have created one table called book and inserted some dummy records. Also I have written out one file like following:

<?php
$host   = "localhost";
$db = "test";
$user   = "root";
$pass   = "";
$conn = new PDO("mysql:host=$host;dbname=$db",$user,$pass);

$sql = "SELECT * FROM books";
$q   = $conn->query($sql) or die("failed!");
while($r = $q->fetch(PDO::FETCH_ASSOC)){
  echo $r['title'];
}
?>

But as ouput I am getting warning and fatal error like :

Warning: PDO::__construct() [pdo.--construct]: [2002] A connection attempt failed because the connected party did not (trying to connect via tcp://localhost:3306) in C:\xampp\htdocs\object\pdo.php on line 7

Fatal error: Maximum execution time of 60 seconds exceeded in C:\xampp\htdocs\object\pdo.php on line 0

So please help me what I missed in my code.

Thanks in advance

share|improve this question
For the connection do the following: try{ $conn = new PDO("mysql:host=$host;dbname=$db",$user,$pass); } catch(PDOException $e) { print_r($e) } And see what error is returned by the PDO class. Insted of 'or die' for the query, do the same try catch as above. – joe92 Nov 22 '12 at 10:35
stackoverflow.com/questions/9682464/… --- Similar question. The answer was that the login details were incorrect. – joe92 Nov 22 '12 at 10:41
If I provide the host name is as 127.0.0.1 instead of localhost, it is working fine. – Sri Nov 23 '12 at 6:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.