summaryrefslogtreecommitdiff
path: root/classes/db/mysql.php
blob: fa97dcff16d9af59d931abf5cfb270c21afc556d (plain)
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
<?php
class Db_Mysql implements IDb {
	private $link;

	function connect($host, $user, $pass, $db, $port) {
		$this->link = mysql_connect($host, $user, $pass);
		if ($this->link) {
			$result = mysql_select_db($db, $this->link);
			if (!$result) {
				die("Can't select DB: " . mysql_error($this->link));
			}
			return $this->link;
		} else {
			die("Unable to connect to database (as $user to $host, database $db): " . mysql_error());
		}
	}

	function escape_string($s, $strip_tags = true) {
		return mysql_real_escape_string($s, $this->link);
	}

	function query($query, $die_on_error = true) {
		$result = mysql_query($query, $this->link);
		if (!$result) {
			$query = htmlspecialchars($query);
			if ($die_on_error) {
				die("Query <i>$query</i> failed: " . ($this->link ? mysql_error($link) : "No connection"));
			}
		}
		return $result;
	}

	function fetch_assoc($result) {
		return mysql_fetch_assoc($result);
	}


	function num_rows($result) {
		return mysql_num_rows($result);
	}

	function fetch_result($result, $row, $param) {
		return mysql_result($result, $row, $param);
	}

	function close() {
		return mysql_close($this->link);
	}

	function affected_rows($result) {
		return mysql_affected_rows($this->link);
	}

	function last_error() {
		return mysql_affected_rows($this->link);
	}

	function init() {
		$this->query("SET time_zone = '+0:0'");

		if (defined('MYSQL_CHARSET') && MYSQL_CHARSET) {
			$this->query("SET NAMES " . MYSQL_CHARSET);
		}

		return true;
	}

}
?>