This repository was archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.mysql.php
144 lines (122 loc) · 4.79 KB
/
class.mysql.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?PHP
class mysql_conn {
private $debug = true; // if true, we'll print information on mysql errors.
// public $debug = false; // if true, we'll print information on mysql errors.
public $insert_id; // the id of the last inserted post
public $resource; // the mysql resource of the last query (or null after no return)
public $affected_rows; // number of affected rows by the last query
public $num_rows; // number of returned rows by last query
public $queries; // number of queries performed since script start
public $conn_start; // unix timestamp (in microseconds)
// for when the class was initialized
public $last_query; // holds the last query sent to the server.
private $link; // handle to our mysql connection
/*
private $username; // mysql username
private $password; // mysql password
private $database; // mysql database name
private $hostname; // mysql server hostname
private $port; // mysql server port
*/
// constructor
function __construct($username, $password, $database, $hostname = 'localhost', $port = '3306') {
$this->conn_start = microtime(true);
$this->link = mysql_connect($hostname.":".$port,$username,$password) or $this->err(mysql_error());
if(!$this->link) { $this->err(mysql_error); }
mysql_select_db($database,$this->link) or $this->err(mysql_error($this->link));
}
// return for how long in microseconds since this instance of the class was initialized
public function execTime() {
return microtime(true)-$this->conn_start;
}
public function ainsert($table,$fields,$values) {
$v = "";
$f = "";
foreach($values as $i => $value) {
$field = $fields[$i];
$v .= "'".$this->sqlesc($value)."',";
$f .= "`$field`,";
}
$v = substr($v,0,-1);
$f = substr($f,0,-1);
return $this->q("INSERT INTO `$table` ($f) values ($v)");
}
// public query function
public function query() {
$args = func_get_args();
$this->q($this->escape_args($args));
if(is_resource($this->result)) {
$array = [];
while($row = mysql_fetch_assoc($this->result)) {
$array[] = $row;
}
return $array;
} else {
return $this->result;
}
}
public function __destruct() {
mysql_close($this->link);
}
// escapes arguments with odd index numbers, and assumes even are safe.
private function escape_args(array $args) {
$query = "";
foreach($args as $i => $arg) {
if($i % 2) {
$query .= $this->sqlesc($arg);
} else {
$query .= $arg;
}
}
return $query;
}
// all queries made through mysql_query should eventually go through here
private function q($query) {
$this->last_query = $query;
$this->result = mysql_query($query,$this->link) or $this->err(mysql_error());
$this->queries++;
$this->affected_rows = mysql_affected_rows($this->link);
if(is_resource($this->result)) {
$this->num_rows = mysql_num_rows($this->result);
} else {
$this->num_rows = 0;
}
$this->insert_id = mysql_insert_id($this->link); // <-- Ugly sollution, I know
}
// escapes strings with mysql_real_escape_string
// (if magic_quotes_gpc is enabled, first apply stripslashes)
private function sqlesc($string) {
return mysql_real_escape_string(get_magic_quotes_gpc() ? stripslashes($string) : $string);
}
// if debug output is enabled, print the mysql error message
// as well as the query that caused it, and die.
// if not, die silently.
private function err($err) {
if($this->debug) {
$err .= nl2br((!empty($this->last_query) ? "\n\nquery: ".$this->last_query : "\n\n"));
die($err);
} else {
die();
}
}
/** insert_array (leaving this commented for now)
$array = [
'table' => "tablename",
'data' => [
$fieldName => $fieldValue
];
];
disabling this for now.
made this to make the migration from json- format less painful.
not sure I want it live.
public function insert_array(array $array) {
$table = $array['table'];
$values = ""; $fields = "";
foreach($array['data'] as $field => $value) {
$fields .= (strlen($fields) ? " , " : "") . "`$field`";
$values .= (strlen($values) ? "," : "") . "'$value'";
}
return $this->insert("insert into `$table` ( $fields ) values ( $values )");
}
*/
}