2012-01-31 16:19:34 -05:00
|
|
|
<?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;
|
2012-02-02 17:43:09 -05:00
|
|
|
private $esc_char = "''";
|
2012-01-31 16:19:34 -05:00
|
|
|
|
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-02 06:26:59 -05:00
|
|
|
function __construct($db, $user="sysdba", $pass="masterkey")
|
2012-01-31 16:19:34 -05:00
|
|
|
{
|
2012-02-02 06:26:59 -05:00
|
|
|
$this->conn = ibase_connect($db, $user, $pass);
|
2012-01-31 16:19:34 -05:00
|
|
|
}
|
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
|
|
|
}
|
2012-02-02 17:43:09 -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-02 17:43:09 -05:00
|
|
|
|
2012-02-06 16:34:00 -05:00
|
|
|
/**
|
|
|
|
* Emulate PDO fetch function
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function fetch()
|
|
|
|
{
|
|
|
|
//TODO implement
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Emulate PDO fetchAll function
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
function fetchAll()
|
|
|
|
{
|
|
|
|
//TODO implement
|
|
|
|
}
|
|
|
|
|
2012-02-02 17:43:09 -05:00
|
|
|
/**
|
2012-02-02 19:07:26 -05:00
|
|
|
* List tables for the current database
|
2012-02-02 17:43:09 -05:00
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2012-02-02 19:07:26 -05:00
|
|
|
function get_tables()
|
|
|
|
{
|
2012-02-06 16:34:00 -05:00
|
|
|
$sql="SELECT rdb\$relation_name FROM rdb\$relations WHERE rdb\$relation_name NOT LIKE 'RDB\$%'";
|
|
|
|
$res = $this->query($sql);
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
2012-02-02 06:26:59 -05:00
|
|
|
|
2012-02-02 17:43:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
class firebird_manip extends firebird {
|
|
|
|
|
|
|
|
function __construct($db, $user="sysdba", $pass="masterkey")
|
|
|
|
{
|
|
|
|
parent::__construct($db, $user, $pass);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-02-01 10:51:06 -05:00
|
|
|
}
|
|
|
|
// End of firebird.php
|