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
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