_config = array(); } /** * Return default port. * * @return int */ public static function getDefaultPort() { return 3306; } /** * Check MySQL version */ public function checkServerVersion() { $databaseVersion = $this->getServerVersion(); $requiredVersion = Zend_Registry::get('config')->General->minimum_mysql_version; if(version_compare($databaseVersion, $requiredVersion) === -1) { throw new Exception(Piwik_TranslateException('General_ExceptionDatabaseVersion', array('MySQL', $databaseVersion, $requiredVersion))); } } /** * Returns true if this adapter's required extensions are enabled * * @return bool */ public static function isEnabled() { $extensions = @get_loaded_extensions(); return in_array('mysqli', $extensions); } /** * Returns true if this adapter supports blobs as fields * * @return bool */ public function hasBlobDataType() { return true; } /** * Test error number * * @param Exception $e * @param string $errno * @return bool */ public function isErrNo($e, $errno) { if(is_null($this->_connection)) { if(preg_match('/(?:\[|\s)([0-9]{4})(?:\]|\s)/', $e->getMessage(), $match)) { return $match[1] == $errno; } return mysqli_connect_errno() == $errno; } return mysqli_errno($this->_connection) == $errno; } /** * Execute unprepared SQL query and throw away the result * * Workaround some SQL statements not compatible with prepare(). * See http://framework.zend.com/issues/browse/ZF-1398 * * @param string $sqlQuery * @return int Number of rows affected (SELECT/INSERT/UPDATE/DELETE) */ public function exec( $sqlQuery ) { $rc = mysqli_query($this->_connection, $sqlQuery); $rowsAffected = mysqli_affected_rows($this->_connection); if(!is_bool($rc)) { mysqli_free_result($rc); } return $rowsAffected; } /** * Is the connection character set equal to utf8? * * @return bool */ public function isConnectionUTF8() { $charset = mysqli_character_set_name($this->_connection); return $charset === 'utf8'; } /** * Get server timezone offset in seconds * * @return string */ public function getCurrentTimezone() { $tzOffset = ''; try { // could return SYSTEM, an offset from UTC (e.g., -05:00), or a named timezone (e.g., 'Europe/Helsinki', 'US/Eastern', or 'MET') $tz = $this->fetchOne('SELECT @@session.time_zone'); $tzOffset = $this->fetchOne("SELECT timestampdiff(second, '2004-01-01 12:00:00', CONVERT_TZ('2004-01-01 12:00:00','+00:00','$tz'))"); } catch(Exception $e) { } return $tzOffset; } }