Re-use the database connection

This commit is contained in:
kaetemi 2014-09-02 20:39:07 +02:00
parent 6acf67d03b
commit 6fed8bad5b

View file

@ -28,6 +28,9 @@
* @author Daan Janssens, mentored by Matthew Lagoe
*
*/
$PDOCache = array();
class DBLayer {
private $PDO;
@ -42,10 +45,12 @@ class DBLayer {
* @param $db String, the name of the databases entry in the $cfg global var.
* @param $dbn String, the name of the databases entry in the $cfg global var if $db referenced to an action(install etc).
*/
function __construct( $db, $dbn = null )
function __construct($db, $dbn = null)
{
if ( $db != "install" ) {
global $PDOCache;
if (isset($PDOCache[$db])) {
$this->PDO = $PDOCache[$db];
} else {
global $cfg;
$dsn = "mysql:";
$dsn .= "host=" . $cfg['db'][$db]['host'] . ";";
@ -53,23 +58,12 @@ class DBLayer {
$dsn .= "port=" . $cfg['db'][$db]['port'] . ";";
$opt = array(
PDO :: ATTR_ERRMODE => PDO :: ERRMODE_EXCEPTION,
PDO :: ATTR_DEFAULT_FETCH_MODE => PDO :: FETCH_ASSOC
PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC
);
$this -> PDO = new PDO( $dsn, $cfg['db'][$db]['user'], $cfg['db'][$db]['pass'], $opt );
} else {
global $cfg;
$dsn = "mysql:";
$dsn .= "host=" . $cfg['db'][$dbn]['host'] . ";";
$dsn .= "port=" . $cfg['db'][$dbn]['port'] . ";";
$opt = array(
PDO :: ATTR_ERRMODE => PDO :: ERRMODE_EXCEPTION,
PDO :: ATTR_DEFAULT_FETCH_MODE => PDO :: FETCH_ASSOC
);
$this -> PDO = new PDO( $dsn, $_POST['Username'], $_POST['Password'], $opt );
$this->PDO = new PDO($dsn, $cfg['db'][$db]['user'], $cfg['db'][$db]['pass'], $opt);
$PDOCache[$db] = $this->PDO;
}
}
/**
@ -78,9 +72,9 @@ class DBLayer {
* @param $query the mysql query.
* @return returns a PDOStatement object.
*/
public function executeWithoutParams( $query ) {
$statement = $this -> PDO -> prepare( $query );
$statement -> execute();
public function executeWithoutParams($query) {
$statement = $this->PDO->prepare($query);
$statement->execute();
return $statement;
}
@ -145,8 +139,7 @@ class DBLayer {
$sth -> execute( $data );
$this -> PDO -> commit();
}
catch( Exception $e )
{
catch ( Exception $e ) {
$this -> PDO -> rollBack();
throw new Exception( "error selection" );
return false;