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?
