2012-02-07 15:27:33 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
2012-02-29 14:36:42 -05:00
|
|
|
* Firebird Specific SQL
|
2012-02-07 15:27:33 -05:00
|
|
|
*/
|
2012-02-29 14:36:42 -05:00
|
|
|
class Firebird_SQL extends DB_SQL {
|
2012-02-07 15:27:33 -05:00
|
|
|
|
2012-02-08 13:42:49 -05:00
|
|
|
/**
|
2012-02-21 11:45:42 -05:00
|
|
|
* Convienience public function to generate sql for creating a db table
|
2012-02-08 13:42:49 -05:00
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @param array $fields
|
|
|
|
* @param array $constraints=array()
|
|
|
|
* @param array $indexes=array()
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-03-06 10:58:38 -05:00
|
|
|
public function create_table($name, $fields, array $constraints=array(), array $indexes=array())
|
2012-02-07 15:27:33 -05:00
|
|
|
{
|
2012-02-08 13:42:49 -05:00
|
|
|
$column_array = array();
|
|
|
|
|
|
|
|
// Reorganize into an array indexed with column information
|
|
|
|
// Eg $column_array[$colname] = array(
|
|
|
|
// 'type' => ...,
|
|
|
|
// 'constraint' => ...,
|
|
|
|
// 'index' => ...,
|
|
|
|
// )
|
2012-02-08 15:05:28 -05:00
|
|
|
foreach($fields as $colname => $type)
|
2012-02-08 13:42:49 -05:00
|
|
|
{
|
|
|
|
if(is_numeric($colname))
|
|
|
|
{
|
|
|
|
$colname = $type;
|
|
|
|
}
|
|
|
|
|
|
|
|
$column_array[$colname] = array();
|
|
|
|
$column_array[$colname]['type'] = ($type !== $colname) ? $type : '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if( ! empty($constraints))
|
|
|
|
{
|
|
|
|
foreach($constraints as $col => $const)
|
|
|
|
{
|
|
|
|
$column_array[$col]['constraint'] = $const;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Join column definitons together
|
|
|
|
$columns = array();
|
|
|
|
foreach($column_array as $n => $props)
|
|
|
|
{
|
2012-02-23 11:26:08 -05:00
|
|
|
$str = '"'.$n.'" ';
|
2012-02-08 15:05:28 -05:00
|
|
|
$str .= (isset($props['type'])) ? "{$props['type']} " : "";
|
2012-02-08 13:42:49 -05:00
|
|
|
$str .= (isset($props['constraint'])) ? "{$props['constraint']} " : "";
|
|
|
|
|
|
|
|
$columns[] = $str;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate the sql for the creation of the table
|
2012-02-23 11:26:08 -05:00
|
|
|
$sql = 'CREATE TABLE "'.$name.'" (';
|
|
|
|
$sql .= implode(',', $columns);
|
|
|
|
$sql .= ')';
|
2012-02-08 13:42:49 -05:00
|
|
|
|
|
|
|
return $sql;
|
2012-02-07 15:27:33 -05:00
|
|
|
}
|
2012-02-07 20:50:25 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Drop the selected table
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return string
|
|
|
|
*/
|
2012-02-21 11:45:42 -05:00
|
|
|
public function delete_table($name)
|
2012-02-07 20:50:25 -05:00
|
|
|
{
|
2012-02-20 16:22:03 -05:00
|
|
|
return 'DROP TABLE "'.$name.'"';
|
2012-02-07 20:50:25 -05:00
|
|
|
}
|
2012-02-29 18:33:21 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Limit clause
|
|
|
|
*
|
|
|
|
* @param string $sql
|
|
|
|
* @param int $limit
|
|
|
|
* @param int $offset
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function limit($sql, $limit, $offset=FALSE)
|
|
|
|
{
|
|
|
|
// Keep the current sql string safe for a moment
|
|
|
|
$orig_sql = $sql;
|
|
|
|
|
|
|
|
$sql = 'FIRST '. (int) $limit;
|
|
|
|
|
|
|
|
if ($offset > 0)
|
|
|
|
{
|
|
|
|
$sql .= ' SKIP'. (int) $offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sql = preg_replace("`SELECT`i", "SELECT {$sql}", $orig_sql);
|
|
|
|
|
|
|
|
return $sql;
|
|
|
|
}
|
2012-02-07 15:27:33 -05:00
|
|
|
}
|
2012-02-29 14:36:42 -05:00
|
|
|
//End of firebird_sql.php
|