diff options
author | Halmai, Csongor <csongor@halmai.hu> | 2015-12-08 01:32:35 +0100 |
---|---|---|
committer | Halmai, Csongor <csongor@halmai.hu> | 2015-12-08 01:32:35 +0100 |
commit | 0f56007d95a8713f0c4276e37604e221f4efbe66 (patch) | |
tree | 2af9264676c1197cf63ff4a84784535b24a90d7a /system/database | |
parent | 5ced82ab986f6a53ca95f5498a63ac503ea8f580 (diff) |
rolling back previous solution; throwing exception if database connection was not successful.
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/DB_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/DB_driver.php b/system/database/DB_driver.php index 25e70ec3f..fb9955b7c 100644 --- a/system/database/DB_driver.php +++ b/system/database/DB_driver.php @@ -436,7 +436,7 @@ abstract class CI_DB_driver { $this->display_error('db_unable_to_connect'); } - return FALSE; + throw new RuntimeException('Database connection failure.'); } } |