diff options
author | Andrey Andreev <narf@devilix.net> | 2013-12-10 10:32:32 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2013-12-10 10:32:32 +0100 |
commit | f8f14f3da263338bb4723012229f6c373a1764c6 (patch) | |
tree | 726317466f897850581bbb543ea63f46e627da2e /system/database/drivers/mysql | |
parent | 3ca060a00e5039aa00d4180ded52b1af49939114 (diff) |
Fix a bug where DB() tried to set the MySQL-specific 'sql_mode' on all drivers
Supersedes PR #2756
Diffstat (limited to 'system/database/drivers/mysql')
-rw-r--r-- | system/database/drivers/mysql/mysql_driver.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/system/database/drivers/mysql/mysql_driver.php b/system/database/drivers/mysql/mysql_driver.php index b94642b35..16b2f6f53 100644 --- a/system/database/drivers/mysql/mysql_driver.php +++ b/system/database/drivers/mysql/mysql_driver.php @@ -66,6 +66,15 @@ class CI_DB_mysql_driver extends CI_DB { */ public $delete_hack = TRUE; + /** + * Strict ON flag + * + * Whether we're running in strict SQL mode. + * + * @var bool + */ + public $stricton = FALSE; + // -------------------------------------------------------------------- /** @@ -126,6 +135,11 @@ class CI_DB_mysql_driver extends CI_DB { : FALSE; } + if ($this->stricton && is_resource($this->conn_id)) + { + $this->simple_query('SET SESSION sql_mode="STRICT_ALL_TABLES"'); + } + return $this->conn_id; } |