Parse error in optimize extension fixed
[mailer.git] / inc / db / lib-mysql3.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/29/2004 *
4  * ===============                              Last change: 08/29/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : lib.php                                          *
8  * -------------------------------------------------------------------- *
9  * Short description :                                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  :                                                  *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // SQL queries
41 function SQL_QUERY($sql_string, $F, $L) {
42         global $link, $CSS, $_CONFIG, $OK;
43
44         // Remove \t, \n and \r from queries they may confuse some MySQL version I have heard
45         $sql_string = str_replace("\t", " ", str_replace("\n", " ", str_replace("\r", " ", $sql_string)));
46
47         // Run SQL command
48         $result = @mysql_query($sql_string, $link)
49          or ADD_FATAL($F." (".$L."):".mysql_error()."<br />
50 ".MYSQL_QUERY_STRING."<br />
51 ".$sql_string);
52
53          // Count this query
54          if (!isset($_CONFIG['sql_count'])) $_CONFIG['sql_count'] = 0;
55          $_CONFIG['sql_count']++;
56
57          // Debug output
58          //* DEBUG: */ print "Query=<pre>".$sql_string."</pre>, affected=<b>".SQL_AFFECTEDROWS()."</b>, numrows=<b>".SQL_NUMROWS($result)."</b><br />\n";
59
60         if (($CSS != "1") && ($CSS != "-1") && (isBooleanConstantAndTrue('DEBUG_MODE')) && (DEBUG_SQL)) {
61                 //
62                 // Debugging stuff...
63                 //
64                 $fp = @fopen(PATH."inc/cache/debug.log", 'a') or mxchange_die("Cannot write debug.log!");
65                 if (!isset($OK)) {
66                         // Write first entry
67                         fwrite($fp, "Module=".$GLOBALS['module']."\n");
68                         $OK = true;
69                 }
70                 fwrite($fp, $F."(LINE=".$L."|NUM=".SQL_NUMROWS($result)."|AFFECTED=".SQL_AFFECTEDROWS()."): ".str_replace('\r', "", str_replace('\n', " ", $sql_string))."\n");
71                 fclose($fp);
72         }
73
74         // Count DB hits
75         if (!isset($_CONFIG['db_hits'])) {
76                 // Count in dummy variable
77                 $_CONFIG['db_hits'] = 0;
78         } else {
79                 // Count to config array
80                 $_CONFIG['db_hits']++;
81         }
82         return $result;
83 }
84
85 // SQL num rows
86 function SQL_NUMROWS($result) {
87         // Is the result a valid resource?
88         if (is_resource($result)) {
89                 // Get the count of rows from database
90                 $lines = @mysql_num_rows($result);
91
92                 // Is the result empty? Then we have an error!
93                 if (empty($lines)) $lines = "0";
94         } else {
95                 // No resource given, no lines found!
96                 $lines = "0";
97         }
98         return $lines;
99 }
100
101 // SQL affected rows
102 function SQL_AFFECTEDROWS($lnk="x", $F="dummy", $L="dummy") {
103         global $link;
104         // $lnk will be ignored for now!
105         $lines = @mysql_affected_rows($link);
106         return $lines;
107 }
108
109 // SQL fetch row
110 function SQL_FETCHROW($result) {
111         $DATA = array();
112         $DATA = @mysql_fetch_row($result);
113         return $DATA;
114 }
115
116 // SQL fetch array
117 function SQL_FETCHARRAY($res=false, $nr=0, $remove_numerical=true) {
118         // Is a result resource set?
119         if (!$res) return false;
120
121         // Initialize array
122         $row = array();
123
124         // Load row from database
125         $row = @mysql_fetch_array($res);
126
127         // Return only arrays here
128         if (is_array($row)) {
129                 // Shall we remove numerical data here automatically?
130                 if ($remove_numerical) {
131                                  // So let's remove all numerical elements to save memory!
132                         $max = count($row);
133                         for ($idx = 0; $idx < ($max / 2); $idx++) {
134                                 // Remove entry
135                                 unset($row[$idx]);
136                         }
137                 }
138
139                 // Return row
140                 return $row;
141         } else {
142                 // Return a false here...
143                 return false;
144         }
145 }
146
147 // SQL result
148 function SQL_RESULT($res, $row, $field) {
149         $result = @mysql_result($res, $row, $field);
150         return $result;
151 }
152 // SQL connect
153 function SQL_CONNECT($host, $login, $password, $F, $L) {
154         $connect = @mysql_connect($host, $login, $password) or ADD_FATAL($F." (".$L."):".mysql_error());
155         return $connect;
156 }
157 // SQL select database
158 function SQL_SELECT_DB($dbName, $link, $F, $L) {
159         $select = false;
160         if (is_resource($link)) {
161                 $select = @mysql_select_db($dbName, $link) or ADD_FATAL($F." (".$L."):".mysql_error());
162         }
163         return $select;
164 }
165 // SQL close link
166 function SQL_CLOSE($link, $F, $L) {
167         global $_CONFIG, $cacheInstance, $cacheArray;
168         if ((GET_EXT_VERSION("cache") >= "0.0.7") && (isset($_CONFIG['db_hits'])) && (isset($_CONFIG['cache_hits'])) && (is_object($cacheInstance))) {
169                 // Update counter for db/cache
170                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET db_hits=%d, cache_hits=%d WHERE config=0 LIMIT 1",
171                         array(bigintval($_CONFIG['db_hits']), bigintval($_CONFIG['cache_hits'])), __FILE__, __LINE__);
172
173                 // Update cache here
174                 if (GET_EXT_VERSION("cache") >= "0.1.2") {
175                         if ($cacheInstance->cache_file("config", true)) {
176                                 // Replace data
177                                 $cacheInstance->cache_replace("cache_hits", $_CONFIG['cache_hits'], "0", $cacheArray);
178                                 $cacheInstance->cache_replace("db_hits"   , $_CONFIG['db_hits']   , "0", $cacheArray);
179                         }
180                 }
181         }
182
183         // Close database link
184         $close = @mysql_close($link) or ADD_FATAL($F." (".$L."):".mysql_error());
185         return $close;
186 }
187 // SQL free result
188 function SQL_FREERESULT($result) {
189         $res = @mysql_free_result($result);
190         return $res;
191 }
192 // SQL string escaping
193 function SQL_QUERY_ESC($qstring, $data, $file, $line, $run=true, $strip=true) {
194         global $link;
195         $eval = "\$query = sprintf(\"".$qstring."\"";
196         foreach ($data as $var) {
197                 if (!empty($var)) {
198                         if ($strip) {
199                                 $eval .= ", SQL_ESCAPE(\"".strip_tags($var)."\")";
200                         } else {
201                                 $eval .= ", SQL_ESCAPE(\"".$var."\")";
202                         }
203                 } else {
204                         $eval .= ", ''";
205                 }
206         }
207         $eval .= ");";
208         //
209         // Debugging
210         //
211         //$fp = fopen(PATH."escape_debug.log", 'a') or mxchange_die("Cannot write debug.log!");
212         //fwrite($fp, $file."(".$line."): ".str_replace('\r', "", str_replace('\n', " ", $eval))."\n");
213         //fclose($fp);
214         eval($eval);
215         if ($run) {
216                 // Run SQL query (default)
217                 return SQL_QUERY($query, $file, $line);
218         } else {
219                 // Return secured string
220                 return $query;
221         }
222 }
223 // Get ID from last INSERT command
224 function SQL_INSERTID() {
225         return @mysql_insert_id();
226 }
227 // Escape a string for the database
228 function SQL_ESCAPE($str) {
229         global $link;
230         if (!is_resource($link)) {
231                 // Fall-back to addslashes() when there is no link
232                 return addslashes($str);
233         }
234
235         if (function_exists('mysql_real_escape_string')) {
236                 // The new and improved version
237                 return mysql_real_escape_string($str, $link);
238         } elseif (function_exists('mysql_escape_string')) {
239                 // The obsulete function
240                 return mysql_escape_string($str, $link);
241         } else {
242                 // If nothing else works
243                 return addslashes($str);
244         }
245 }
246 // SELECT query string from table, columns and so on... ;-)
247 function SQL_RESULT_FROM_ARRAY ($table, $columns, $idRow, $id) {
248         // Prepare the SQL statement
249         $SQL = "SELECT ".implode(", ", $columns)." FROM "._MYSQL_PREFIX."_".$table." WHERE ".$idRow."=%d LIMIT 1";
250
251         // Return the result
252         return SQL_QUERY_ESC($SQL, array(bigintval($id)), __FILE__, __LINE__);
253 }
254 //
255 ?>