I am re-working all of my mysql_* and mysqli connections to use PDO but I can't seem to even get the basics right. I have two files: one that creates the connection and returns it and one that utilizes the connection for whatever purpose I deem necessary. For some reason however, I cannot get the connection to return properly to be utilized. If I run any PDO function (query, prepare, etc..), I get a server response of 500 with no error messages. I do know however, that if I create the connection and query all in the same function, everything is hunky-dory. I am assuming is it something simple, so maybe fresh eyes can help me out.
db_connect.php (to form the connection):
class db_connect {
function __construct() {}
function __destruct() {}
public function connect() {
require_once 'db_info.php';
try{
$dbh = new PDO('mysql:host='.DB_HOST.';dbname='.DB_DATABASE, DB_USER, DB_PASSWORD);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$dbh->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
} catch (PDOException $e) {
echo 'Connection Failed: ' . $e->getMessage();
}
return $dbh;
}
public function close() {
$dbh = null;
}
}
operations.php (utilizes connection):
class operations {
private $dbh;
function __construct() {
require_once 'db_connect.php';
$this->dbh = new db_connect();
$this->dbh->connect();
}
function runQuery() {
// causes 500 error, no logs:
$stmt = $dbh->query("SELECT * FROM myTable");
}
}
I did search around for some answers but none of the solutions I found worked for me. Thanks in advance for any help.
$dbh->querybe$this->dbh->query? So that it refers to the object you created within the operations class. Also on yourdb_connectclass theclosefunction wouldn't do anything.. – dakdad Nov 1 '12 at 20:22