ttrss/classes/db.php

108 lines
2.2 KiB
PHP
Raw Normal View History

<?php
class Db implements IDb {
private static $instance;
private $adapter;
2013-04-17 13:36:34 +02:00
private $link;
2017-11-30 08:47:42 +01:00
private $pdo;
private function __construct() {
2013-04-17 19:19:00 +02:00
$er = error_reporting(E_ALL);
2017-11-30 08:47:42 +01:00
switch (DB_TYPE) {
2013-04-17 19:19:00 +02:00
case "mysql":
2016-08-21 13:03:35 +02:00
$this->adapter = new Db_Mysqli();
2013-04-17 19:19:00 +02:00
break;
case "pgsql":
$this->adapter = new Db_Pgsql();
break;
default:
die("Unknown DB_TYPE: " . DB_TYPE);
}
if (!$this->adapter) {
print("Error initializing database adapter for " . DB_TYPE);
exit(100);
}
2013-04-17 19:19:00 +02:00
2017-11-30 08:47:42 +01:00
$db_port = defined(DB_PORT) ? ';port='.DB_PORT : '';
$this->pdo = new PDO(DB_TYPE . ':dbname='.DB_NAME.';host='.DB_HOST.$db_port,
DB_USER,
DB_PASS);
if (!$this->pdo) {
print("Error connecting via PDO.");
exit(101);
}
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) {
print("Error connecting through adapter: " . $this->adapter->last_error());
exit(101);
2013-04-17 19:19:00 +02:00
}
error_reporting($er);
}
private function __clone() {
//
}
public static function get() {
if (self::$instance == null)
self::$instance = new self();
return self::$instance;
}
static function quote($str){
return("'$str'");
}
function reconnect() {
$this->link = $this->adapter->connect(DB_HOST, DB_USER, DB_PASS, DB_NAME, defined('DB_PORT') ? DB_PORT : "");
}
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 ;
}
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();
}
function last_query_error() {
return $this->adapter->last_query_error();
}
2017-04-26 19:24:18 +02:00
}