diff options
author | Andrey Andreev <narf@devilix.net> | 2015-12-14 16:56:14 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2015-12-14 16:56:14 +0100 |
commit | 85bc9fc53e4c3e46b2f4e1b1eac7e2828d4869e6 (patch) | |
tree | 78abe651f52c39be43a3e22ba38c1e83160a7bc8 /system/database/drivers/mysqli | |
parent | 788fb4aa823179e7c4401f5384207d916697bb7e (diff) |
Change DB charset handling
Close #4311
Diffstat (limited to 'system/database/drivers/mysqli')
-rw-r--r-- | system/database/drivers/mysqli/mysqli_driver.php | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/system/database/drivers/mysqli/mysqli_driver.php b/system/database/drivers/mysqli/mysqli_driver.php index 827470078..f9a20ea2f 100644 --- a/system/database/drivers/mysqli/mysqli_driver.php +++ b/system/database/drivers/mysqli/mysqli_driver.php @@ -173,6 +173,13 @@ class CI_DB_mysqli_driver extends CI_DB { return ($this->db->db_debug) ? $this->db->display_error($message, '', TRUE) : FALSE; } + if ( ! $mysqli->set_charset($this->char_set)) + { + log_message('error', "Database: Unable to set the configured connection charset ('{$this->char_set}')."); + $mysqli->close(); + return ($this->db->db_debug) ? $this->display_error('db_unable_to_set_charset', $charset) : FALSE; + } + return $mysqli; } @@ -224,19 +231,6 @@ class CI_DB_mysqli_driver extends CI_DB { // -------------------------------------------------------------------- /** - * Set client character set - * - * @param string $charset - * @return bool - */ - protected function _db_set_charset($charset) - { - return $this->conn_id->set_charset($charset); - } - - // -------------------------------------------------------------------- - - /** * Database version number * * @return string |