My solution uses a) an extension of the mysqli class and b) a wrapper class which uses the magic __call method
mysqli extension class
First I create a child class of mysqli. The only differences are: a) the constructor does NOT create a connection, and b) there is a new function connect() which does call the parent constructor.
class Weber_mysqli extends mysqli {
protected $_connection = null;
protected $_dbhost, $_dbuser, $_dbpass, $_dbname;
public function __construct($DBHOST, $DBUSER, $DBPASS, $DBNAME) {
$this->_dbhost = $DBHOST; $this->_dbuser = $DBUSER; $this->_dbpass = $DBPASS; $this->_dbname = $DBNAME;
}
public function connect() {
if( $this->_connection === null ) {
$this->_connection = true;
parent::__construct($this->_dbhost, $this->_dbuser, $this->_dbpass, $this->_dbname);
}
}
}
Now the database connection is created when connect() is called and not when the object is constructed.
wrapper class
The second class now wraps around the extension class and catches ALL method calls.
The reason we can't simply put the __call function inside the extension class is that it checks for methods that do NOT exist; therefore, all mysqli functions would skip it since they exist inside the parent.
class Wrapper {
protected $mysqli;
public function __construct(Weber_mysqli $mysqli) {
$this->mysqli = $mysqli;
}
public function __call($method, $args) {
$this->mysqli->connect();
return call_user_func_array(array($this->mysqli, $method), $args);
}
}
Now to use this all you have to do in your include file is:
$_db = new Wrapper( new Weber_mysqli($DBHOST, $DBUSER, $DBPASS, $DBNAME) );
And to run a query, simply:
$exec = $_db->query($sql);
This establishes the connection, invokes mysqli::query and returns the mysqli_result. If you end up not using the Wrapper object, then no connection is created and no resources are wasted except a tiny bit of memory.
You can download the code uncondensed and commented here:
http://andrewtweber.com/downloads/weber_mysqli.zip
mysql_*functions but converting that tomysqliwasn't very straightforward since it connected when constructing the object. – andrewtweber Jun 28 '12 at 5:04parent::init()fromparent::real_connect()so there is no problem in implementing a lazy connector extension as you want. However, there is something wrong with your runtime architecture if you are experiencing a material overhead for D/B connection. What is more relevant in your scenario is the efficacy of your caching solution and how you cache the corresponding metadata. – TerryE Jun 28 '12 at 11:13