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.

Currently I connect to my database in a setup file:

// connect to database
try {
    $conn = new PDO('mysql:host='.DB_HOST.';dbname='.DB_DATABASE.'', DB_USERNAME, DB_PASSWORD);
    $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch(PDOException $err) {
    die($err->getMessage());
}

// start session
session_start();

// classes
spl_autoload_register(function($class) {
    require_once($class.'.php');
});

// instantiate controller object
new Controller(new Database($conn));

This file also instantiates my Controller and passes in the connection through a Database wrapper. The Controller then proceeds to pass the connection along to any Models.

What bothers me is that this creates a database connection for every page request when one may not even be needed. I don't want the connection in any constructors because that goes against Dependency Injection, so where should I put it that would allow me to connect on an as-needed basis?

share|improve this question

closed as not constructive by hakre, tereško, NullPoiиteя, DaveRandom, Graviton Jan 22 at 3:26

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote -1 down vote accepted

There’s a couple of approaches. You could either have a registry that you pass around your application that has common libraries, like your database connection. Or, you could put it in your abstract model class and call it when you need. Both have advantages and disadvantages.

The first scenario would see you instantiate a database connection in your front controller, assign it to a global registry object, and call that from your models and controllers.

The second could look something like this:

<?php
abstract class Model {

    protected function getDatabaseConnection() {
        $this->db = new PDO('mysql:host=127.0.0.1;dbname=DBNAME', 'DBUSER', 'DBPASS');
        $this->db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    }
}

And then in extending models:

<?php
class Article extends Model {

    public function save($data)
    {
        parent::getDatabaseConnection();

        $sql = "INSERT INTO `articles` (`title`, `content`) VALUES (:title, :content)";
        $stmt = $this->db->prepare($sql);
        $stmt->execute($data);
    }
}

Do be aware that the above is merely for demonstration purposes and should not be used in production code. It’s just to illustrate how it would fit together, so build on that and tailor it to your application.

share|improve this answer
Following this logic, please correct me if I'm wrong, would it make sense to treat my Database wrapper as a base model and give it a getConnection() method, then have my other models extend it? Additionally, would it be acceptable to put the parent::getConnection() in each model's constructor? – mister martin Jan 11 at 13:31
1  
Maybe getDatabaseConnection() was the wrong choice of method name. You could put the connection in your base model, but then what happens when you want to create a model where the data source is an XML file instead of a database? – Martin Bean Jan 11 at 14:02
-1 model is not a class or object – tereško Jan 18 at 23:00
@tereško Care to elaborate? – Martin Bean Jan 19 at 15:31
1  
I kinda have already. The comment is limited to 600 chars. What you have there is not a model. Instead it is an activerecord instance, that you just call "model". Also, as side not, you PDO connection is vulnerable to SQL injection because of emulated prepares and incorrect DSN. – tereško Jan 19 at 15:47
show 4 more comments

Your model and its methods are what are supposed to handle the data and database interaction for the most part.

What you could do is have a Base Model class, one that extends it with the database connection, and one that extends it without. Then your specific models can choose which model class to extend.

Basically:

        BaseModel
        /        \
    DBModel     StandardModel
      ||                   \\
Interacts with DB        For contact forms, static pages, etc

I think that would solve the issue and DB connections would only be made when the model extends the DBModel class.

Now the database connection function should be stored entirely in the DBModel, with the config variables static. You should not create the connection and pass it to the model itself as that defeats the purpose.

share|improve this answer
This sounds like a great option, but I'm not exactly sure how to implement it. Would you mind updating your answer with some pseudo-code, please? – mister martin Jan 11 at 0:06

Why not just put your connection calls in your models, so anytime a model is used it connects to the DB and skips out loadin DB connections for every page reload that doesn't require model/DB information

share|improve this answer

You mean something like Singleton pattern? It's used for making sure, that only one instance of a class exists at the moment and is commonly used for Database Connections.

share|improve this answer

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