Fixed part of firebird tests with native driver
This commit is contained in:
parent
c481827935
commit
e3fefa1aca
@ -100,7 +100,7 @@ foreach(pdo_drivers() as $d)
|
||||
}
|
||||
|
||||
// Load Firebird if there is support
|
||||
if(function_exists('ibase_connect'))
|
||||
if(function_exists('ibase_connect') && ! in_array('firebird', pdo_drivers()))
|
||||
{
|
||||
require_once("{$path}firebird-ibase.php");
|
||||
require_once("{$path}firebird_sql.php");
|
||||
|
@ -19,9 +19,12 @@ class Firebird extends DB_PDO {
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct($dbpath, $user, $pass)
|
||||
public function __construct($dbpath, $user='sysdba', $pass='masterkey')
|
||||
{
|
||||
parent::__construct("firebird:{$dbpath}", $user, $pass);
|
||||
|
||||
$class = __CLASS__."_sql";
|
||||
$this->sql = new $class;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------
|
||||
|
@ -15,7 +15,6 @@
|
||||
/**
|
||||
* Unit test bootstrap - Using php simpletest
|
||||
*/
|
||||
|
||||
define('BASE_DIR', '../src');
|
||||
|
||||
// Include simpletest
|
||||
|
Reference in New Issue
Block a user