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
|
<?php
/** * Database core functions for the PDO::MySQL library * * Note: PHP version 5 states that the MySQL library is "Maintenance only, Long term deprecation announced." * It recommends using the PDO::MySQL or the MySQLi library instead. * * @package core */ // force UTF-8 Ø
define('DATABASE_SOFTWARE', 'PDO::MySQL'); Define('DATABASE_MIN_VERSION', '5.0.0'); Define('DATABASE_DESIRED_VERSION', '5.5.0');
/** * Connect to the database server and select the database. * @param array $config the db configuration parameters * @param bool $errorstop set to false to omit error messages * @return true if successful connection */ function db_connect($config, $errorstop = true) { global $_zp_DB_connection, $_zp_DB_details, $_zp_DB_last_result; $_zp_DB_details = unserialize(DB_NOT_CONNECTED); $_zp_DB_connection = $_zp_DB_last_result = NULL; if (array_key_exists('UTF-8', $config) && $config['UTF-8']) { $utf8 = ';charset=utf8'; } else { $utf8 = false; } try { $db = $config['mysql_database']; $hostname = $config['mysql_host']; $username = $config['mysql_user']; $password = $config['mysql_pass']; if (class_exists('PDO')) { $_zp_DB_connection = new PDO("mysql:host=$hostname;dbname=$db$utf8", $username, $password); } } catch (PDOException $e) { $_zp_DB_last_result = $e; if ($errorstop) { zp_error(sprintf(gettext('MySql Error: Zenphoto received the error %s when connecting to the database server.'), $e->getMessage())); } $_zp_DB_connection = NULL; return false; } $_zp_DB_details = $config; if ($utf8 && version_compare(PHP_VERSION, '5.3.6', '<')) { try { $_zp_DB_connection->query("SET NAMES 'utf8'"); } catch (PDOException $e) { // :( } } // set the sql_mode to relaxed (if possible) try { $_zp_DB_connection->query('SET SESSION sql_mode="";'); } catch (PDOException $e) { // What can we do :( } return $_zp_DB_connection; }
/* * report the software of the database */
function db_software() { global $_zp_DB_connection; $dbversion = trim($_zp_DB_connection->getAttribute(PDO::ATTR_SERVER_VERSION)); preg_match('/[0-9,\.]*/', $dbversion, $matches); return array('application' => DATABASE_SOFTWARE, 'required' => DATABASE_MIN_VERSION, 'desired' => DATABASE_DESIRED_VERSION, 'version' => $matches[0]); }
/** * create the database */ function db_create() { global $_zp_DB_details; $sql = 'CREATE DATABASE IF NOT EXISTS ' . '`' . $_zp_DB_details['mysql_database'] . '`' . db_collation(); return query($sql, false); }
/** * Returns user's permissions on the database */ function db_permissions() { global $_zp_DB_details; $sql = "SHOW GRANTS FOR " . $_zp_DB_details['mysql_user'] . ";"; $result = query($sql, false); if (!$result) { $result = query("SHOW GRANTS;", false); } if ($result) { $db_results = array(); while ($onerow = db_fetch_row($result)) { $db_results[] = $onerow[0]; } return $db_results; } else { return false; } }
/** * Sets the SQL session mode to empty */ function db_setSQLmode() { return query('SET SESSION sql_mode=""', false); }
/** * Queries the SQL session mode */ function db_getSQLmode() { $result = query('SELECT @@SESSION.sql_mode;', false); if ($result) { $row = db_fetch_row($result); return $row[0]; } return false; }
function db_collation() { return ' CHARACTER SET utf8 COLLATE utf8_unicode_ci'; }
function db_create_table(&$sql) { return query($sql, false); }
function db_table_update(&$sql) { return query($sql, false); }
function db_show($what, $aux = '') { global $_zp_DB_details; switch ($what) { case 'tables': $sql = "SHOW TABLES FROM `" . $_zp_DB_details['mysql_database'] . "` LIKE '" . db_LIKE_escape($_zp_DB_details['mysql_prefix']) . "%'"; return query($sql, false); case 'columns': $sql = 'SHOW FULL COLUMNS FROM `' . $_zp_DB_details['mysql_prefix'] . $aux . '`'; return query($sql, false); case 'variables': $sql = "SHOW VARIABLES LIKE '$aux'"; return query_full_array($sql); case 'index': $sql = "SHOW INDEX FROM `" . $_zp_DB_details['mysql_database'] . '`.' . $aux; return query_full_array($sql); } }
function db_list_fields($table) { $result = db_show('columns', $table); if ($result) { $fields = array(); while ($row = db_fetch_assoc($result)) { $fields[] = $row; } return $fields; } else { return false; } }
function db_truncate_table($table) { global $_zp_DB_details; $sql = 'TRUNCATE ' . $_zp_DB_details['mysql_prefix'] . $table; return query($sql, false); }
function db_LIKE_escape($str) { return strtr($str, array('_' => '\\_', '%' => '\\%')); }
require_once('functions-db_PDO.php'); ?>
|