Query/drivers/firebird/firebird_util.php

170 lines
4.0 KiB
PHP
Raw Normal View History

<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
2012-04-20 13:17:39 -04:00
* @package Query
* @author Timothy J. Warren
2014-01-02 12:36:50 -05:00
* @copyright Copyright (c) 2012 - 2014
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
2014-04-02 17:08:50 -04:00
namespace Query\Driver;
/**
* Firebird-specific backup, import and creation methods
2012-04-20 13:17:39 -04:00
*
* @package Query
* @subpackage Drivers
2014-03-17 19:34:48 -04:00
* @method array get_system_tables()
* @method array get_tables()
* @method object query(string $sql)
2014-04-09 10:55:17 -04:00
* @method resource get_service()
*/
class Firebird_Util extends Abstract_Util {
/**
* Convienience public function to generate sql for creating a db table
*
* @deprecated Use the table builder class instead
* @param string $name
* @param array $fields
* @param array $constraints
* @return string
*/
public function create_table($name, $fields, array $constraints=array())
{
$column_array = array();
// Reorganize into an array indexed with column information
// Eg $column_array[$colname] = array(
// 'type' => ...,
// 'constraint' => ...,
// 'index' => ...,
// )
foreach($fields as $colname => $type)
{
$column_array[$colname] = array();
$column_array[$colname]['type'] = ($type !== $colname) ? $type : '';
}
// Join column definitons together
$columns = array();
foreach($column_array as $n => $props)
{
$str = $this->quote_ident($n);
$str .= (isset($props['type'])) ? " {$props['type']}" : "";
$str .= (isset($props['constraint'])) ? " {$props['constraint']}" : "";
$columns[] = $str;
}
// Generate the sql for the creation of the table
$sql = 'CREATE TABLE '.$this->quote_table($name).' (';
$sql .= implode(', ', $columns);
$sql .= ')';
return $sql;
}
/**
* Drop the selected table
*
* @param string $name
* @return string
*/
public function delete_table($name)
{
return 'DROP TABLE '.$this->quote_table($name);
}
// --------------------------------------------------------------------------
/**
* Create an SQL backup file for the current database's structure
* @codeCoverageIgnore
2014-04-08 14:43:07 -04:00
* @param string $db_path
* @param string $new_file
* @return string
*/
public function backup_structure()
{
2014-04-08 14:43:07 -04:00
list($db_path, $new_file) = func_get_args();
2014-04-09 10:55:17 -04:00
return ibase_backup($this->get_service(), $db_path, $new_file, \IBASE_BKP_METADATA_ONLY);
}
// --------------------------------------------------------------------------
/**
* Create an SQL backup file for the current database's data
*
* @codeCoverageIgnore
* @param array $exclude
* @param bool $system_tables
* @return string
*/
public function backup_data($exclude=array(), $system_tables=FALSE)
{
// Determine which tables to use
if($system_tables == TRUE)
{
$tables = array_merge($this->get_system_tables(), $this->get_tables());
}
else
{
$tables = $this->get_tables();
}
// Filter out the tables you don't want
if( ! empty($exclude))
{
$tables = array_diff($tables, $exclude);
}
$output_sql = '';
// Get the data for each object
foreach($tables as $t)
{
$sql = 'SELECT * FROM "'.trim($t).'"';
$res = $this->query($sql);
2014-04-02 17:08:50 -04:00
$obj_res = $res->fetchAll(\PDO::FETCH_ASSOC);
2012-04-18 16:28:12 -04:00
// Don't add to the file if the table is empty
if (count($obj_res) < 1) continue;
// Nab the column names by getting the keys of the first row
$columns = @array_keys($obj_res[0]);
$insert_rows = array();
// Create the insert statements
foreach($obj_res as $row)
{
$row = array_values($row);
// Quote values as needed by type
if(stripos($t, 'RDB$') === FALSE)
{
$row = array_map(array(&$this, 'quote'), $row);
$row = array_map('trim', $row);
}
$row_string = 'INSERT INTO "'.trim($t).'" ("'.implode('","', $columns).'") VALUES ('.implode(',', $row).');';
2012-04-18 16:28:12 -04:00
$row = NULL;
$insert_rows[] = $row_string;
}
$output_sql .= "\n\nSET TRANSACTION;\n".implode("\n", $insert_rows)."\nCOMMIT;";
}
return $output_sql;
}
}
// End of firebird_util.php