2013-04-17 11:08:36 +02:00
|
|
|
<?php
|
|
|
|
class Db implements IDb {
|
|
|
|
private static $instance;
|
|
|
|
private $adapter;
|
2013-04-17 13:36:34 +02:00
|
|
|
private $link;
|
2013-04-17 11:08:36 +02:00
|
|
|
|
|
|
|
private function __construct() {
|
2013-04-17 19:19:00 +02:00
|
|
|
|
|
|
|
$er = error_reporting(E_ALL);
|
|
|
|
|
2013-04-18 06:20:45 +02:00
|
|
|
if (defined('_ENABLE_PDO') && _ENABLE_PDO && class_exists("PDO")) {
|
2013-04-17 19:19:00 +02:00
|
|
|
$this->adapter = new Db_PDO();
|
|
|
|
} else {
|
|
|
|
switch (DB_TYPE) {
|
|
|
|
case "mysql":
|
|
|
|
if (function_exists("mysqli_connect")) {
|
|
|
|
$this->adapter = new Db_Mysqli();
|
|
|
|
} else {
|
|
|
|
$this->adapter = new Db_Mysql();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case "pgsql":
|
|
|
|
$this->adapter = new Db_Pgsql();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
die("Unknown DB_TYPE: " . DB_TYPE);
|
2013-04-17 16:56:13 +02:00
|
|
|
}
|
2013-04-17 11:08:36 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 19:19:00 +02:00
|
|
|
if (!$this->adapter) die("Error initializing database adapter for " . DB_TYPE);
|
|
|
|
|
2013-04-18 13:44:25 +02:00
|
|
|
$this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : "");
|
2013-04-17 19:19:00 +02:00
|
|
|
|
|
|
|
if (!$this->link) {
|
|
|
|
die("Error connecting through adapter: " . $this->adapter->last_error());
|
|
|
|
}
|
|
|
|
|
|
|
|
error_reporting($er);
|
2013-04-17 11:08:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private function __clone() {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function get() {
|
|
|
|
if (self::$instance == null)
|
|
|
|
self::$instance = new self();
|
|
|
|
|
|
|
|
return self::$instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
static function quote($str){
|
|
|
|
return("'$str'");
|
|
|
|
}
|
|
|
|
|
2013-04-24 12:54:59 +02:00
|
|
|
function reconnect() {
|
|
|
|
$this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : "");
|
|
|
|
}
|
|
|
|
|
2013-04-17 11:08:36 +02:00
|
|
|
function connect($host, $user, $pass, $db, $port) {
|
|
|
|
//return $this->adapter->connect($host, $user, $pass, $db, $port);
|
2013-04-17 14:23:15 +02:00
|
|
|
return ;
|
2013-04-17 11:08:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function escape_string($s, $strip_tags = true) {
|
|
|
|
return $this->adapter->escape_string($s, $strip_tags);
|
|
|
|
}
|
|
|
|
|
|
|
|
function query($query, $die_on_error = true) {
|
|
|
|
return $this->adapter->query($query, $die_on_error);
|
|
|
|
}
|
|
|
|
|
|
|
|
function fetch_assoc($result) {
|
|
|
|
return $this->adapter->fetch_assoc($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function num_rows($result) {
|
|
|
|
return $this->adapter->num_rows($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function fetch_result($result, $row, $param) {
|
|
|
|
return $this->adapter->fetch_result($result, $row, $param);
|
|
|
|
}
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
return $this->adapter->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
function affected_rows($result) {
|
|
|
|
return $this->adapter->affected_rows($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
function last_error() {
|
|
|
|
return $this->adapter->last_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|