OpenSQLManager/src/databases/firebird.php

216 lines
3.6 KiB
PHP
Raw Normal View History

<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Firebird Database class
*
* PDO-firebird isn't stable, so this is a wrapper of the ibase_ functions.
*/
class firebird {
2012-02-02 06:26:59 -05:00
protected $conn, $statement;
private $esc_char = "''";
2012-01-31 17:52:46 -05:00
/**
* Open the link to the database
*
* @param string $db
* @param string $user
* @param string $pass
*/
2012-02-06 22:36:01 -05:00
function __construct($dbpath, $user="sysdba", $pass="masterkey")
{
2012-02-06 22:36:01 -05:00
$this->conn = ibase_connect($dbpath, $user, $pass);
2012-02-08 15:05:28 -05:00
$class = __CLASS__."_manip";
$this->manip = new $class;
}
2012-01-31 17:52:46 -05:00
/**
* Close the link to the database
*/
function __destruct()
{
2012-02-02 06:26:59 -05:00
ibase_close($this->conn);
2012-01-31 17:52:46 -05:00
}
/**
* Empty a database table
*
* @param string $table
*/
function truncate($table)
{
// Firebird lacka a truncate command
$sql = "DELETE FROM {$table}";
$this->query($sql);
}
2012-02-02 06:26:59 -05:00
/**
* Wrapper function to better match PDO
*
* @param string $sql
* @return resource
*/
function query($sql)
{
$this->statement = ibase_query($this->conn, $sql);
return $this->statement;
}
2012-02-06 16:34:00 -05:00
/**
* Emulate PDO fetch function
*
* @param int $fetch_style
2012-02-06 16:34:00 -05:00
* @return mixed
*/
function fetch($fetch_style=PDO::FETCH_ASSOC)
2012-02-06 16:34:00 -05:00
{
switch($fetch_style)
{
case PDO::FETCH_OBJ:
return ibase_fetch_object($this->statement);
break;
case PDO::FETCH_NUM:
return ibase_fetch_row($this->statement);
break;
case PDO::FETCH_BOTH:
return array_merge(
ibase_fetch_row($this->statement),
ibase_fetch_assoc($this->statement)
);
break;
default:
return ibase_fetch_assoc($this->statement);
break;
}
2012-02-06 16:34:00 -05:00
}
/**
* Emulate PDO fetchAll function
*
* @param int $fetch_style
2012-02-06 16:34:00 -05:00
* @return mixed
*/
function fetchAll($fetch_style=PDO::FETCH_ASSOC)
2012-02-06 16:34:00 -05:00
{
$all = array();
while($row = $this->fetch($fetch_style))
{
$all[] = $row;
}
return $all;
2012-02-06 16:34:00 -05:00
}
2012-02-06 16:56:16 -05:00
/**
* Emulate PDO prepare
2012-02-09 12:00:39 -05:00
*
2012-02-06 16:56:16 -05:00
* @return resource
*/
function prepare()
{
$this->statement = ibase_prepare($this->conn, $query);
return $this->statement;
}
/**
2012-02-02 19:07:26 -05:00
* List tables for the current database
*
* @return array
*/
2012-02-02 19:07:26 -05:00
function get_tables()
{
2012-02-13 14:16:29 -05:00
$sql = <<<SQL
SELECT "RDB$RELATION_NAME" FROM "RDB$RELATIONS"
WHERE "RDB$RELATION_NAME" NOT LIKE 'RDB$%'
AND "RDB$RELATION_NAME" NOT LIKE 'MON$%'
SQL;
2012-02-06 22:36:01 -05:00
$this->statement = $this->query($sql);
2012-02-09 12:00:39 -05:00
$tables = array();
while($row = $this->fetch(PDO::FETCH_ASSOC))
{
$tables[] = $row['RDB$RELATION_NAME'];
}
return $tables;
}
2012-02-06 16:56:16 -05:00
/**
* List system tables for the current database
*
* @return array
*/
function get_system_tables()
{
2012-02-13 14:16:29 -05:00
$sql = <<<SQL
SELECT "RDB$RELATION_NAME" FROM "RDB$RELATIONS"
WHERE "RDB$RELATION_NAME" LIKE 'RDB$%'
OR "RDB$RELATION_NAME" LIKE 'MON$%';
SQL;
$this->statement = $this->query($sql);
$tables = array();
while($row = $this->fetch(PDO::FETCH_ASSOC))
{
$tables[] = $row['RDB$RELATION_NAME'];
}
return $tables;
}
2012-02-06 16:56:16 -05:00
/**
* Return the number of rows affected by the previous query
*
* @return int
*/
function affected_rows()
{
return ibase_affected_rows($this->conn);
2012-02-06 16:56:16 -05:00
}
/**
* Return the number of rows returned for a SELECT query
*
* @return int
*/
function num_rows()
{
$count = 0;
if(isset($this->statement))
{
while($row = $this->fetch())
{
$count++;
}
}
else
{
return FALSE;
}
return $count;
}
}
// End of firebird.php