This commit is contained in:
M@dD3n 2019-09-19 13:38:27 +03:00
parent a77c0c229f
commit a4f4c6b5a4
2 changed files with 23 additions and 2 deletions

View File

@ -483,6 +483,25 @@
}
/**
* Задает Sql Mode
*
* @param string $charset
*
* @throws AVE_DB_Exception
* @return AVE_DB
*/
public function setSqlMode()
{
if (!$this->mysqli->query("SET SQL_MODE = ''"))
{
throw new AVE_DB_Exception(__METHOD__ . ': ' . $this->mysqli->error);
}
return $this;
}
/**
* Устанавливает имя используемой СУБД.
*

View File

@ -187,11 +187,11 @@
//-- Debug Class
require (BASE_DIR . '/class/class.debug.php');
$Debug = new Debug;
new Debug;
//-- Hooks Class
require (BASE_DIR . '/class/class.hooks.php');
$Hooks = new Hooks;
new Hooks;
//-- Подкючаем необходимые файлы функций
require_once (BASE_DIR . '/functions/func.breadcrumbs.php'); // Хлебные крошки
@ -249,6 +249,8 @@
->setCharset('utf8')
//-- Назначаем БД
->setDatabaseName($config['dbname']);
//-- SQL Mode
->setSqlMode();
}
catch (AVE_DB_Exception $e)
{