Created
April 6, 2013 23:06
-
-
Save phalcon/5328034 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace Phalcon; | |
| error_reporting(E_ALL & E_NOTICE); | |
| try { | |
| $unavailable_database = array('username' => 'non', 'password' => 'hea'); | |
| $db = new Db\Adapter\Pdo\Mysql($unavailable_database); | |
| } catch(\PDOException $e) { | |
| echo $e->getMessage(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment