-
Notifications
You must be signed in to change notification settings - Fork 1
/
DB.php
88 lines (69 loc) · 2.21 KB
/
DB.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
class DB {
/**
* private variables
*/
private $user;
private $password;
private $database;
private $server;
private $_handle = NULL;
/**
* public variables
*/
public $error;
public $sql;
public $result;
/*
* this is a constructor, a function
* that loads when an object of a class is created
* here constructor initializes the database connectivity variables
*/
/*
function __construct($server, $user, $password, $database) {
$this->server = $server;
$this->user = $user;
$this->password = $password;
$this->database = $database;
if(!$this->connection = mysql_connect($this->server,$this->user,$this->password)) {
throw new Exception('<font color="red">ERROR :: COULD NOT ESTABLISH A CONNECTION: '.mysql_error().'</font>', self::CONNECTION_ERROR);
}else {
if(!mysql_select_db($this->database)) {
throw new Exception('<font color="red">ERROR :: COULD NOT FIND A DATABASE : '.mysql_error().'</font>', self::CONNECTION_ERROR);
}
}
}
*/
function Connect($server, $user, $password, $database) {
$this->server = $server;
$this->user = $user;
$this->password = $password;
$this->database = $database;
if(!$this->connection = mysql_connect($this->server,$this->user,$this->password,$this->database)) {
throw new Exception('<font color="red">ERROR :: COULD NOT ESTABLISH A CONNECTION: '.mysql_error().'</font>', self::CONNECTION_ERROR);
}else {
if(!mysql_select_db($this->database)) {
throw new Exception('<font color="red">ERROR :: COULD NOT FIND A DATABASE : '.mysql_error().'</font>', self::CONNECTION_ERROR);
}else return mysql_select_db($this->database);
}
}
private function __construct($server,$user,$password, $database) {
//$dsn = 'mysql://root:password@localhost/photos'; die;
$this->_handle =& DB::Connect($server,$user,$password, $database);
}
public static function get() {
$user = "root";
$password = "";
$database= "db_pyrocms";
$server = "localhost";
static $db = null;
if ( $db == null )
$db = new DB($server,$user,$password, $database);
return $db;
}
public function handle() {
echo $this->_handle;
}
function __destruct(){}
}
?>