From cc49bcfbaa13d8a699facd67635ee847c2652b57 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 6 Feb 2014 16:09:47 -0500 Subject: [PATCH] Fix Firebird test connection issue --- drivers/firebird/firebird_driver.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/firebird/firebird_driver.php b/drivers/firebird/firebird_driver.php index ab1c1ed..4e38bc4 100644 --- a/drivers/firebird/firebird_driver.php +++ b/drivers/firebird/firebird_driver.php @@ -59,7 +59,7 @@ class Firebird extends DB_PDO { * @param string $user * @param string $pass */ - public function __construct($dbpath, $user='sysdba', $pass='masterkey') + public function __construct($dbpath, $user='SYSDBA', $pass='masterkey') { $this->conn = fbird_connect($dbpath, $user, $pass, 'utf-8'); @@ -67,7 +67,6 @@ class Firebird extends DB_PDO { if ( ! is_resource($this->conn)) { throw new PDOException(fbird_errmsg()); - die(); } // Load these classes here because this