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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
|
<?php # $Id: mysqli.inc.php 565 2005-10-17 13:04:11Z garvinhicking $ # Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team) # All rights reserved. See LICENSE file for licensing details
function serendipity_db_begin_transaction(){ serendipity_db_query('start transaction'); }
function serendipity_db_end_transaction($commit){ if ($commit){ serendipity_db_query('commit'); }else{ serendipity_db_query('rollback'); } }
function serendipity_db_in_sql($col, &$search_ids) { return $col . " IN (" . implode(', ', $search_ids) . ")"; }
/* Issues a query to the underlying database; * returns: * false if there was an error, * true if the query succeeded but did not generate any rows * array of field values if it returned a single row and $single is true * array of array of field values if it returned row(s) */ function &serendipity_db_query($sql, $single = false, $result_type = "both", $reportErr = false, $assocKey = false, $assocVal = false, $expectError = false) { global $serendipity; static $type_map = array('assoc' => MYSQLI_ASSOC, 'num' => MYSQLI_NUM, 'both' => MYSQLI_BOTH, 'true' => true, 'false' => false);
if ($expectError) { $c = @mysqli_query($serendipity['dbConn'], $sql); } else { $c = mysqli_query($serendipity['dbConn'], $sql); }
if (!$expectError && mysqli_error($serendipity['dbConn']) != '') { $msg = mysqli_error($serendipity['dbConn']); return $msg; }
if (!$c) { if (!$expectError && !$serendipity['production']) { print mysqli_error($serendipity['dbConn']); if (function_exists('debug_backtrace') && $reportErr == true) { highlight_string(var_export(debug_backtrace(), 1)); } }
return $type_map['false']; }
if ($c === true) { return $type_map['true']; }
$result_type = $type_map[$result_type];
switch(mysqli_num_rows($c)) { case 0: if ($single) { return $type_map['false']; } return $type_map['true']; case 1: if ($single) { return mysqli_fetch_array($c, $result_type); } default: if ($single) { return mysqli_fetch_array($c, $result_type); }
$rows = array(); while ($row = mysqli_fetch_array($c, $result_type)) { if (!empty($assocKey) && !empty($assocVal)) { // You can fetch a key-associated array via the two function parameters assocKey and assocVal $rows[$row[$assocKey]] = $row[$assocVal]; } else { $rows[] = $row; } } return $rows; } }
function serendipity_db_insert_id() { global $serendipity; return mysqli_insert_id($serendipity['dbConn']); }
function serendipity_db_affected_rows() { global $serendipity; return mysqli_affected_rows($serendipity['dbConn']); }
function serendipity_db_updated_rows() { global $serendipity;
preg_match( "/^[^0-9]+([0-9]+)[^0-9]+([0-9]+)[^0-9]+([0-9]+)/", mysqli_info(), $arr); // mysqli_affected_rows returns 0 if rows were matched but not changed. // mysqli_info returns rows matched return $arr[1]; }
function serendipity_db_matched_rows() { global $serendipity;
preg_match( "/^[^0-9]+([0-9]+)[^0-9]+([0-9]+)[^0-9]+([0-9]+)/", mysqli_info(), $arr); // mysqli_affected_rows returns 0 if rows were matched but not changed. // mysqli_info returns rows matched return $arr[0]; }
function serendipity_db_escape_string($string) { global $serendipity; return mysqli_escape_string($serendipity['dbConn'], $string); }
function serendipity_db_limit($start, $offset) { return $start . ', ' . $offset; }
function serendipity_db_limit_sql($limitstring) { return ' LIMIT ' . $limitstring; }
function serendipity_db_connect() { global $serendipity;
if (isset($serendipity['dbConn'])) { return $serendipity['dbConn']; }
if (isset($serendipity['dbPersistent']) && $serendipity['dbPersistent']) { $function = 'mysqli_pconnect'; } else { $function = 'mysqli_connect'; }
$serendipity['dbConn'] = $function($serendipity['dbHost'], $serendipity['dbUser'], $serendipity['dbPass']); mysqli_select_db($serendipity['dbConn'], $serendipity['dbName']);
return $serendipity['dbConn']; }
function serendipity_db_schema_import($query) { static $search = array('{AUTOINCREMENT}', '{PRIMARY}', '{UNSIGNED}', '{FULLTEXT}', '{FULLTEXT_MYSQL}', '{BOOLEAN}'); static $replace = array('int(11) not null auto_increment', 'primary key', 'unsigned' , 'FULLTEXT', 'FULLTEXT', 'enum (\'true\', \'false\') NOT NULL default \'true\''); static $is_utf8 = null; global $serendipity; if ($is_utf8 === null) { $search[] = '{UTF_8}'; if ( $_POST['charset'] == 'UTF-8/' || $serendipity['charset'] == 'UTF-8/' || $serendipity['POST']['charset'] == 'UTF-8/' || LANG_CHARSET == 'UTF-8' ) { $replace[] = '/*!40100 CHARACTER SET utf8 COLLATE utf8_unicode_ci */'; } else { $replace[] = ''; } }
$query = trim(str_replace($search, $replace, $query)); if ($query{0} == '@') { // Errors are expected to happen (like duplicate index creation) return serendipity_db_query(substr($query, 1), false, 'both', false, false, false, true); } else { return serendipity_db_query($query); } }
/* probes the usability of the DB during installation */ function serendipity_db_probe($hash, &$errs) { global $serendipity;
if (!function_exists('mysqli_connect')) { $errs[] = 'No mySQLi extension found. Please check your webserver installation or contact your systems administrator regarding this problem.'; return false; }
if (!($c = @mysqli_connect($hash['dbHost'], $hash['dbUser'], $hash['dbPass']))) { $errs[] = 'Could not connect to database; check your settings.'; $errs[] = 'The mySQL error was: ' . mysqli_connect_error(); return false; }
$serendipity['dbConn'] = $c;
if ( !@mysqli_select_db($c, $hash['dbName']) ) { $errs[] = 'The database you specified does not exist.'; $errs[] = 'The mySQL error was: ' . mysqli_error($c); return false; }
return true; }
function serendipity_db_concat($string) { return 'concat(' . $string . ')'; }
/* vim: set sts=4 ts=4 expandtab : */ ?>
|