I have a few classes that perform some MySQL queries and prepared statements. However, I am lost in how to incorporate my PDO object within those classes. For example, I want to do something like this:

<?php

$dbh = new PDO(...);

class Foo extends PDO {
    public $dbh;

    public function bar() {
        $this->dbh->prepare('SELECT * FROM table');
        $this->dbh->execute();

    }
}


?>

Unfortunately, it doesn't work. Can anyone suggest an elegant way to do this? Thanks for your time. Sorry I'm new to this, please leave any comments if you are unclear about anything and I'll do my best to respond!

link|improve this question

2  
Does your class Foo really extend class PDO? Or does an instance of FOO simply use and instance PDO. Your example looks more like using than extending. – VolkerK Jan 12 '10 at 9:30
feedback

2 Answers

up vote 15 down vote accepted

You can instantiate your connection to the database in a class that implement the singleton pattern. The connection will be done once and this class will be easily accessible by all of your other objects / scripts.

i use a class called "Core" in the following example;

class Core
{
    public $dbh; // handle of the db connexion
    private static $instance;

    private function __construct()
    {
        // building data source name from config
        $dsn = 'pgsql:host=' . Config::read('db.host') .
               ';dbname='    . Config::read('db.basename') .
               ';port='      . Config::read('db.port') .
               ';connect_timeout=15';
        // getting DB user from config                
        $user = Config::read('db.user');
        // getting DB password from config                
        $password = Config::read('db.password');

        $this->dbh = new PDO($dsn, $user, $password);
    }

    public static function getInstance()
    {
        if (!isset(self::$instance))
        {
            $object = __CLASS__;
            self::$instance = new $object;
        }
        return self::$instance;
    }

    // others global functions
}

this class take parameters from a static class called "Config" where you can store your configuration:

<?php
class Config
{
    static $confArray;

    public static function read($name)
    {
        return self::$confArray[$name];
    }

    public static function write($name, $value)
    {
        self::$confArray[$name] = $value;
    }

}

// db
Config::write('db.host', '127.0.0.1');
Config::write('db.port', '5432');
Config::write('db.basename', 'mydb');
Config::write('db.user', 'myuser');
Config::write('db.password', 'mypassword');

in all your scripts / objects you just have to get the instance of Core and then query the DB

$sql = "select login, email from users where id = :id";

try {
    $core = Core::getInstance();
    $stmt = $core->dbh->prepare($sql);
    $stmt->bindParam(':id', $this->id, PDO::PARAM_INT);

    if ($stmt->execute()) {
        $o = $stmt->fetch(PDO::FETCH_OBJ);
        // blablabla....

If you need more information about singleton look at the PHP doc http://php.net/manual/en/language.oop5.patterns.php

link|improve this answer
Wow this is awesome and works perfectly. Thanks for the suggestion, it's nice and elegant :) This will definitely be one of the coding practices that will stick with me through different projects! – Axsuul Jan 13 '10 at 4:56
you're welcome; i use the Core class to store other usefull things that need to be accessible in many of my scripts, like the object that contains the logged user... it's very convenient – Guillaume Boschini Jan 13 '10 at 8:36
4  
I think 'private static $instance;' needs to be declared as a property, otherwise you will get Access to undeclared static property: Core::$instance. – Ben May 17 '10 at 20:29
2  
You might want to make __construct() private as well, to ensure that there is only ever one instance. By doing this you will only be able to get an instance by using getInstance. "$core = new Core()" would raise an error. – Mr_Chimp Sep 15 '11 at 11:31
Is this the most efficient way to have a PDO 'connection class' and then use queries throughout the site? and with this approach would you need to use $core = null;? – Silver89 Jan 5 at 2:37
show 2 more comments
feedback

$dbh isn't within the scope of Foo, do this instead:

class Foo /*extends PDO*/
{
    public $dbh;

    public function __construct()
    {
        $dbh = new PDO(/*...*/);
    }

    public function bar()
    {
        $this->dbh->prepare('SELECT * FROM table');
        return $this->dbh->execute();
    }
}

Also, Foo doesn't need to extend PDO.

link|improve this answer
Would that slow the database/script down since I am making a new connection each time I create an object? – Axsuul Jan 12 '10 at 7:16
Why would you need to instantiate the object more than once? – Alix Axel Jan 12 '10 at 7:30
I meant to say I have 14 different objects in a script, and they all need database connections, so therefore wouldn't I be making 14 database connections? – Axsuul Jan 12 '10 at 7:41
No, Foo will only be instantiated once, hence only one PDO connection. – Alix Axel Jan 12 '10 at 8:13
1  
But what if I have other objects, like Bar, Moo, Cow, Barn and they also need to make database queries, so wouldn't that be +4 more db connections? Thanks for sticking with me – Axsuul Jan 12 '10 at 8:21
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.