Firebird updates

This commit is contained in:
Timothy Warren 2012-02-06 22:36:01 -05:00
parent 7f084e9438
commit f1714b056c
1 changed files with 5 additions and 3 deletions

View File

@ -29,9 +29,9 @@ class firebird {
* @param string $user
* @param string $pass
*/
function __construct($db, $user="sysdba", $pass="masterkey")
function __construct($dbpath, $user="sysdba", $pass="masterkey")
{
$this->conn = ibase_connect($db, $user, $pass);
$this->conn = ibase_connect($dbpath, $user, $pass);
}
/**
@ -134,7 +134,9 @@ class firebird {
function get_tables()
{
$sql="SELECT rdb\$relation_name FROM rdb\$relations WHERE rdb\$relation_name NOT LIKE 'RDB\$%'";
$res = $this->query($sql);
$this->statement = $this->query($sql);
return $this->fetch(PDO::FETCH_NUM);
}
/**