select_db($database)) { throw new Exception('Connection to server succeed, but it was impossible to connect to database'); } // MySQL 5.7 default settings forbid to select a colum that is not in the // group by. We've used that in Piwigo, for years. As an immediate solution // we can remove this constraint in the current MySQL session. list($sql_mode_current) = pwg_db_fetch_row(pwg_query('SELECT @@SESSION.sql_mode')); // remove ONLY_FULL_GROUP_BY from the list $sql_mode_altered = implode(',', array_diff(explode(',', $sql_mode_current), array('ONLY_FULL_GROUP_BY'))); if ($sql_mode_altered != $sql_mode_current) { pwg_query("SET SESSION sql_mode='".$sql_mode_altered."'"); } } /** * Set charset for database connection. */ function pwg_db_check_charset() { global $mysqli; $db_charset = 'utf8'; if (defined('DB_CHARSET') and DB_CHARSET != '') { $db_charset = DB_CHARSET; } $mysqli->set_charset($db_charset); } /** * Check MySQL version. Can call fatal_error(). */ function pwg_db_check_version() { $current_mysql = pwg_get_db_version(); if (version_compare($current_mysql, REQUIRED_MYSQL_VERSION, '<')) { fatal_error( sprintf( 'your MySQL version is too old, you have "%s" and you need at least "%s"', $current_mysql, REQUIRED_MYSQL_VERSION ) ); } } /** * Get Mysql Version. * * @return string */ function pwg_get_db_version() { global $mysqli; return $mysqli->server_info; } /** * Execute a query * * @param string $query * @return mysqli_result|bool */ function pwg_query($query) { global $mysqli, $conf, $page, $debug, $t2; $start = microtime(true); ($result = $mysqli->query($query)) or my_error($query, $conf['die_on_sql_error']); $time = microtime(true) - $start; if (!isset($page['count_queries'])) { $page['count_queries'] = 0; $page['queries_time'] = 0; } $page['count_queries']++; $page['queries_time']+= $time; if ($conf['show_queries']) { $output = ''; $output.= '
['.$page['count_queries'].'] '; $output.= "\n".$query; $output.= "\n".'(this query time : '; $output.= ''.number_format($time, 3, '.', ' ').' s)'; $output.= "\n".'(total SQL time : '; $output.= number_format($page['queries_time'], 3, '.', ' ').' s)'; $output.= "\n".'(total time : '; $output.= number_format( ($time+$start-$t2), 3, '.', ' ').' s)'; if ( $result!=null and preg_match('/\s*SELECT\s+/i',$query) ) { $output.= "\n".'(num rows : '; $output.= pwg_db_num_rows($result).' )'; } elseif ( $result!=null and preg_match('/\s*INSERT|UPDATE|REPLACE|DELETE\s+/i',$query) ) { $output.= "\n".'(affected rows : '; $output.= pwg_db_changes().' )'; } $output.= "\n"; $debug .= $output; } return $result; } /** * Get max value plus one of a particular column. * * @param string $column * @param string $table * @param int */ function pwg_db_nextval($column, $table) { $query = ' SELECT IF(MAX('.$column.')+1 IS NULL, 1, MAX('.$column.')+1) FROM '.$table; list($next) = pwg_db_fetch_row(pwg_query($query)); return $next; } function pwg_db_changes() { global $mysqli; return $mysqli->affected_rows; } function pwg_db_num_rows($result) { return $result->num_rows; } function pwg_db_fetch_array($result) { return $result->fetch_array(); } function pwg_db_fetch_assoc($result) { return $result->fetch_assoc(); } function pwg_db_fetch_row($result) { return $result->fetch_row(); } function pwg_db_fetch_object($result) { return $result->fetch_object(); } function pwg_db_free_result($result) { return $result->free_result(); } function pwg_db_real_escape_string($s) { global $mysqli; return $mysqli->real_escape_string($s); } function pwg_db_insert_id() { global $mysqli; return $mysqli->insert_id; } function pwg_db_errno() { global $mysqli; return $mysqli->errno; } function pwg_db_error() { global $mysqli; return $mysqli->error; } function pwg_db_close() { global $mysqli; return $mysqli->close(); } define('MASS_UPDATES_SKIP_EMPTY', 1); /** * Updates multiple lines in a table. * * @param string $tablename * @param array $dbfields - contains 'primary' and 'update' arrays * @param array $datas - indexed by column names * @param int $flags - if MASS_UPDATES_SKIP_EMPTY, empty values do not overwrite existing ones */ function mass_updates($tablename, $dbfields, $datas, $flags=0) { if (count($datas) == 0) { return; } // we use the multi table update or N update queries if (count($datas) < 10) { foreach ($datas as $data) { $is_first = true; $query = ' UPDATE '.$tablename.' SET '; foreach ($dbfields['update'] as $key) { $separator = $is_first ? '' : ",\n "; if (isset($data[$key]) and $data[$key] != '') { $query.= $separator.$key.' = \''.$data[$key].'\''; } else { if ($flags & MASS_UPDATES_SKIP_EMPTY) { continue; // next field } $query.= "$separator$key = NULL"; } $is_first = false; } if (!$is_first) {// only if one field at least updated $is_first = true; $query.= ' WHERE '; foreach ($dbfields['primary'] as $key) { if (!$is_first) { $query.= ' AND '; } if (isset($data[$key])) { $query.= $key.' = \''.$data[$key].'\''; } else { $query.= $key.' IS NULL'; } $is_first = false; } pwg_query($query); } } // foreach update } // if count
"); trigger_error($error, E_USER_WARNING); echo(""); } /** * Builds an data array from a SQL query. * Depending on $key_name and $value_name it can return : * * - an array of arrays of all fields (key=null, value=null) * array( * array('id'=>1, 'name'=>'DSC8956', ...), * array('id'=>2, 'name'=>'DSC8957', ...), * ... * ) * * - an array of a single field (key=null, value='...') * array('DSC8956', 'DSC8957', ...) * * - an associative array of array of all fields (key='...', value=null) * array( * 'DSC8956' => array('id'=>1, 'name'=>'DSC8956', ...), * 'DSC8957' => array('id'=>2, 'name'=>'DSC8957', ...), * ... * ) * * - an associative array of a single field (key='...', value='...') * array( * 'DSC8956' => 1, * 'DSC8957' => 2, * ... * ) * * @since 2.6 * * @param string $query * @param string $key_name * @param string $value_name * @return array */ function query2array($query, $key_name=null, $value_name=null) { $result = pwg_query($query); $data = array(); if (isset($key_name)) { if (isset($value_name)) { while ($row = $result->fetch_assoc()) $data[ $row[$key_name] ] = $row[$value_name]; } else { while ($row = $result->fetch_assoc()) $data[ $row[$key_name] ] = $row; } } else { if (isset($value_name)) { while ($row = $result->fetch_assoc()) $data[] = $row[$value_name]; } else { while ($row = $result->fetch_assoc()) $data[] = $row; } } return $data; } ?>