diff options
author | Phil Sturgeon <me@philsturgeon.com> | 2021-11-17 17:29:32 +0100 |
---|---|---|
committer | Phil Sturgeon <me@philsturgeon.com> | 2021-11-17 17:29:32 +0100 |
commit | 47c6b45f524f826e56aff8e77bf289bcbfa1b51d (patch) | |
tree | e2533dc0e74d62480b52550a13385168aa9f1992 /system/database/drivers/pdo | |
parent | d49ffb0cbbb19b552bf8f33cbfe9e52505eae21e (diff) | |
parent | 5ad670dea78cc0f0c0fd690220a243a905cb06bf (diff) |
Merge branch 'php80-patch1' of https://github.com/sapics/CodeIgniter into ci3-php8
Diffstat (limited to 'system/database/drivers/pdo')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index d0a2bf959..b2178b684 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -131,6 +131,14 @@ class CI_DB_pdo_driver extends CI_DB { $this->options[PDO::ATTR_PERSISTENT] = TRUE; } + // From PHP8.0, default PDO::ATTR_ERRMODE is changed + // from PDO::ERRMODE_SILENT to PDO::ERRMODE_EXCEPTION + // as https://wiki.php.net/rfc/pdo_default_errmode + if ( ! isset($this->options[PDO::ATTR_ERRMODE])) + { + $this->options[PDO::ATTR_ERRMODE] = PDO::ERRMODE_SILENT; + } + try { return new PDO($this->dsn, $this->username, $this->password, $this->options); |