mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-29 19:33:54 +01:00
new schema_proc class seems to work now
This commit is contained in:
parent
1cabb62405
commit
d5dbb7ef72
File diff suppressed because it is too large
Load Diff
@ -1,200 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**************************************************************************\
|
|
||||||
* wGroupWare - Setup *
|
|
||||||
* http://www.egroupware.org *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This file written by Michael Dean<mdean@users.sourceforge.net> *
|
|
||||||
* and Miles Lott<milosch@groupwhere.org> *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
|
||||||
* under the terms of the GNU General Public License as published by the *
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
||||||
* option) any later version. *
|
|
||||||
\**************************************************************************/
|
|
||||||
|
|
||||||
/* $Id$ */
|
|
||||||
|
|
||||||
class schema_proc_array
|
|
||||||
{
|
|
||||||
var $m_sStatementTerminator;
|
|
||||||
|
|
||||||
function schema_proc_array()
|
|
||||||
{
|
|
||||||
$this->m_sStatementTerminator = ';';
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Return a type suitable for DDL abstracted array */
|
|
||||||
function TranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = $sType;
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function TranslateDefault($sDefault)
|
|
||||||
{
|
|
||||||
return $sDefault;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetPKSQL($sFields)
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetUCSQL($sFields)
|
|
||||||
{
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
function _GetColumns($oProc, &$aTables, $sTableName, &$sColumns, $sDropColumn='')
|
|
||||||
{
|
|
||||||
$sColumns = '';
|
|
||||||
while(list($sName, $aJunk) = each($aTables[$sTableName]['fd']))
|
|
||||||
{
|
|
||||||
if($sColumns != '')
|
|
||||||
{
|
|
||||||
$sColumns .= ',';
|
|
||||||
}
|
|
||||||
$sColumns .= $sName;
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropTable($oProc, &$aTables, $sTableName)
|
|
||||||
{
|
|
||||||
if(isset($aTables[$sTableName]))
|
|
||||||
{
|
|
||||||
unset($aTables[$sTableName]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData=True)
|
|
||||||
{
|
|
||||||
if(isset($aTables[$sTableName]))
|
|
||||||
{
|
|
||||||
if(isset($aTables[$sTableName]['fd'][$sColumnName]))
|
|
||||||
{
|
|
||||||
unset($aTables[$sTableName]['fd'][$sColumnName]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
|
|
||||||
{
|
|
||||||
$aNewTables = array();
|
|
||||||
while(list($sTableName, $aTableDef) = each($aTables))
|
|
||||||
{
|
|
||||||
if($sTableName == $sOldTableName)
|
|
||||||
{
|
|
||||||
$aNewTables[$sNewTableName] = $aTableDef;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$aNewTables[$sTableName] = $aTableDef;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$aTables = $aNewTables;
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData=True)
|
|
||||||
{
|
|
||||||
if (isset($aTables[$sTableName]))
|
|
||||||
{
|
|
||||||
$aNewTableDef = array();
|
|
||||||
reset($aTables[$sTableName]['fd']);
|
|
||||||
while(list($sColumnName, $aColumnDef) = each($aTables[$sTableName]['fd']))
|
|
||||||
{
|
|
||||||
if($sColumnName == $sOldColumnName)
|
|
||||||
{
|
|
||||||
$aNewTableDef[$sNewColumnName] = $aColumnDef;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$aNewTableDef[$sColumnName] = $aColumnDef;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$aTables[$sTableName]['fd'] = $aNewTableDef;
|
|
||||||
|
|
||||||
reset($aTables[$sTableName]['pk']);
|
|
||||||
while(list($key, $sColumnName) = each($aTables[$sTableName]['pk']))
|
|
||||||
{
|
|
||||||
if($sColumnName == $sOldColumnName)
|
|
||||||
{
|
|
||||||
$aTables[$sTableName]['pk'][$key] = $sNewColumnName;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
reset($aTables[$sTableName]['ix']);
|
|
||||||
while(list($key,$sColumnName) = each($aTables[$sTableName]['ix']))
|
|
||||||
{
|
|
||||||
if ($sColumnName == $sOldColumnName)
|
|
||||||
{
|
|
||||||
$aTables[$sTableName]['ix'][$key] = $sNewColumnName;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
reset($aTables[$sTableName]['uc']);
|
|
||||||
while(list($key, $sColumnName) = each($aTables[$sTableName]['uc']))
|
|
||||||
{
|
|
||||||
if($sColumnName == $sOldColumnName)
|
|
||||||
{
|
|
||||||
$aTables[$sTableName]['uc'][$key] = $sNewColumnName;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData=True)
|
|
||||||
{
|
|
||||||
if(isset($aTables[$sTableName]))
|
|
||||||
{
|
|
||||||
if(isset($aTables[$sTableName]['fd'][$sColumnName]))
|
|
||||||
{
|
|
||||||
$aTables[$sTableName]['fd'][$sColumnName] = $aColumnDef;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
|
|
||||||
{
|
|
||||||
if(isset($aTables[$sTableName]))
|
|
||||||
{
|
|
||||||
if(!isset($aTables[$sTableName]['fd'][$sColumnName]))
|
|
||||||
{
|
|
||||||
$aTables[$sTableName]['fd'][$sColumnName] = $aColumnDef;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function CreateTable($oProc, &$aTables, $sTableName, $aTableDef)
|
|
||||||
{
|
|
||||||
if(!isset($aTables[$sTableName]))
|
|
||||||
{
|
|
||||||
$aTables[$sTableName] = $aTableDef;
|
|
||||||
}
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function RefreshTable($oProc, &$aTables, $sTableName, $aTableDef)
|
|
||||||
{
|
|
||||||
$aTables[$sTableName] = $aTableDef;
|
|
||||||
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,364 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**************************************************************************\
|
|
||||||
* eGroupWare - Setup *
|
|
||||||
* http://www.egroupware.org *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This file written by Michael Dean<mdean@users.sourceforge.net> *
|
|
||||||
* and Miles Lott<milosch@groupwhere.org> *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
|
||||||
* under the terms of the GNU General Public License as published by the *
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
||||||
* option) any later version. *
|
|
||||||
\**************************************************************************/
|
|
||||||
|
|
||||||
/* $Id$ */
|
|
||||||
|
|
||||||
class schema_proc_mssql
|
|
||||||
{
|
|
||||||
var $m_sStatementTerminator;
|
|
||||||
/* Following added to convert sql to array */
|
|
||||||
var $sCol = array();
|
|
||||||
var $pk = array();
|
|
||||||
var $fk = array();
|
|
||||||
var $ix = array();
|
|
||||||
var $uc = array();
|
|
||||||
var $b_needExplicitNULL = true; // no definition means NOT NULL for mssql
|
|
||||||
|
|
||||||
function schema_proc_mssql()
|
|
||||||
{
|
|
||||||
$this->m_sStatementTerminator = ';';
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Return a type suitable for DDL */
|
|
||||||
function TranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = '';
|
|
||||||
switch($sType)
|
|
||||||
{
|
|
||||||
case 'auto':
|
|
||||||
$sTranslated = 'int identity(1,1) NOT NULL';
|
|
||||||
break;
|
|
||||||
case 'blob':
|
|
||||||
$sTranslated = 'image'; /* wonder how well PHP will support this??? */
|
|
||||||
break;
|
|
||||||
case 'char':
|
|
||||||
if ($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("char(%d)", $iPrecision);
|
|
||||||
}
|
|
||||||
if ($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = 'text';
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'date':
|
|
||||||
$sTranslated = 'smalldatetime';
|
|
||||||
break;
|
|
||||||
case 'decimal':
|
|
||||||
$sTranslated = sprintf("decimal(%d,%d)", $iPrecision, $iScale);
|
|
||||||
break;
|
|
||||||
case 'float':
|
|
||||||
switch ($iPrecision)
|
|
||||||
{
|
|
||||||
case 4:
|
|
||||||
$sTranslated = 'float';
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
$sTranslated = 'real';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'int':
|
|
||||||
switch ($iPrecision)
|
|
||||||
{
|
|
||||||
case 2:
|
|
||||||
$sTranslated = 'smallint';
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
case 8:
|
|
||||||
$sTranslated = 'int';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'longtext':
|
|
||||||
case 'text':
|
|
||||||
$sTranslated = 'text';
|
|
||||||
break;
|
|
||||||
case 'timestamp':
|
|
||||||
$sTranslated = 'datetime';
|
|
||||||
break;
|
|
||||||
case 'bool':
|
|
||||||
$sTranslated = 'bit';
|
|
||||||
break;
|
|
||||||
case 'varchar':
|
|
||||||
if ($iPrecision > 0 && $iPrecision <= 256)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("varchar(%d)", $iPrecision);
|
|
||||||
}
|
|
||||||
if ($iPrecision > 256)
|
|
||||||
{
|
|
||||||
$sTranslated = 'text';
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function TranslateDefault($sDefault)
|
|
||||||
{
|
|
||||||
switch ($sDefault)
|
|
||||||
{
|
|
||||||
case 'current_date':
|
|
||||||
case 'current_timestamp':
|
|
||||||
return 'GetDate()';
|
|
||||||
}
|
|
||||||
|
|
||||||
return "'$sDefault'";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Inverse of above, convert sql column types to array info
|
|
||||||
function rTranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = '';
|
|
||||||
if ($sType == 'int' || $sType == 'tinyint' || $sType == 'smallint')
|
|
||||||
{
|
|
||||||
if ($iPrecision > 8)
|
|
||||||
{
|
|
||||||
$iPrecision = 8;
|
|
||||||
}
|
|
||||||
elseif($iPrecision > 4)
|
|
||||||
{
|
|
||||||
$iPrecision = 4;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$iPrecision = 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
switch($sType)
|
|
||||||
{
|
|
||||||
case 'tinyint':
|
|
||||||
case 'smallint':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 2";
|
|
||||||
break;
|
|
||||||
case 'int':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 4";
|
|
||||||
break;
|
|
||||||
case 'char':
|
|
||||||
if ($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'char', 'precision' => $iPrecision";
|
|
||||||
}
|
|
||||||
if ($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'text'";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'decimal':
|
|
||||||
$sTranslated = "'type' => 'decimal', 'precision' => $iPrecision, 'scale' => $iScale";
|
|
||||||
break;
|
|
||||||
case 'float':
|
|
||||||
case 'double':
|
|
||||||
$sTranslated = "'type' => 'float', 'precision' => $iPrecision";
|
|
||||||
break;
|
|
||||||
case 'smalldatetime':
|
|
||||||
$sTranslated = "'type' => 'date'";
|
|
||||||
break;
|
|
||||||
case 'datetime':
|
|
||||||
$sTranslated = "'type' => 'timestamp'";
|
|
||||||
break;
|
|
||||||
case 'varchar':
|
|
||||||
if ($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'varchar', 'precision' => $iPrecision";
|
|
||||||
}
|
|
||||||
if ($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'text'";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'image':
|
|
||||||
$sTranslated = "'type' => 'blob'";
|
|
||||||
break;
|
|
||||||
case 'text':
|
|
||||||
$sTranslated = "'type' => '$sType'";
|
|
||||||
break;
|
|
||||||
case 'bit':
|
|
||||||
$sTranslated = "'type' => 'bool'";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetPKSQL($sFields)
|
|
||||||
{
|
|
||||||
return "PRIMARY KEY NONCLUSTERED ($sFields)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetUCSQL($sFields)
|
|
||||||
{
|
|
||||||
return "UNIQUE($sFields)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetIXSQL($sFields,&$append,$options,$sTableName)
|
|
||||||
{
|
|
||||||
$append = True;
|
|
||||||
$ixFields = str_replace(',','_',$sFields);
|
|
||||||
$index = $sTableName . '_' . $ixFields . '_idx';
|
|
||||||
return "CREATE INDEX $index ON $sTableName ($sFields);\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
function _GetColumns($oProc, $sTableName, &$sColumns, $sDropColumn = '')
|
|
||||||
{
|
|
||||||
$sColumns = '';
|
|
||||||
$this->pk = array();
|
|
||||||
$this->fk = array();
|
|
||||||
$this->ix = array();
|
|
||||||
$this->uc = array();
|
|
||||||
|
|
||||||
// Field, Type, Null, Key, Default, Extra
|
|
||||||
$oProc->m_odb->query("exec sp_columns '$sTableName'");
|
|
||||||
while ($oProc->m_odb->next_record())
|
|
||||||
{
|
|
||||||
$type = $default = $null = $nullcomma = $prec = $scale = $ret = $colinfo = $scales = '';
|
|
||||||
if ($sColumns != '')
|
|
||||||
{
|
|
||||||
$sColumns .= ',';
|
|
||||||
}
|
|
||||||
$sColumns .= $oProc->m_odb->f(0);
|
|
||||||
|
|
||||||
// The rest of this is used only for SQL->array
|
|
||||||
$colinfo = explode('(',$oProc->m_odb->f(1));
|
|
||||||
$prec = str_replace(')','',$colinfo[1]);
|
|
||||||
$scales = explode(',',$prec);
|
|
||||||
if ($scales[1])
|
|
||||||
{
|
|
||||||
$prec = $scales[0];
|
|
||||||
$scale = $scales[1];
|
|
||||||
}
|
|
||||||
$type = $this->rTranslateType($colinfo[0], $prec, $scale);
|
|
||||||
|
|
||||||
if ($oProc->m_odb->f(2) == 'YES')
|
|
||||||
{
|
|
||||||
$null = "'nullable' => True";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$null = "'nullable' => False";
|
|
||||||
}
|
|
||||||
if ($oProc->m_odb->f(4))
|
|
||||||
{
|
|
||||||
$default = "'default' => '".$oProc->m_odb->f(4)."'";
|
|
||||||
$nullcomma = ',';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$default = '';
|
|
||||||
$nullcomma = '';
|
|
||||||
}
|
|
||||||
if ($oProc->m_odb->f(5))
|
|
||||||
{
|
|
||||||
$type = "'type' => 'auto'";
|
|
||||||
}
|
|
||||||
$this->sCol[] = "\t\t\t\t'" . $oProc->m_odb->f(0)."' => array(" . $type . ',' . $null . $nullcomma . $default . '),' . "\n";
|
|
||||||
if ($oProc->m_odb->f(3) == 'PRI')
|
|
||||||
{
|
|
||||||
$this->pk[] = $oProc->m_odb->f(0);
|
|
||||||
}
|
|
||||||
if ($oProc->m_odb->f(3) == 'UNI')
|
|
||||||
{
|
|
||||||
$this->uc[] = $oProc->m_odb->f(0);
|
|
||||||
}
|
|
||||||
/* Hmmm, MUL could also mean unique, or not... */
|
|
||||||
if ($oProc->m_odb->f(3) == 'MUL')
|
|
||||||
{
|
|
||||||
$this->ix[] = $oProc->m_odb->f(0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* ugly as heck, but is here to chop the trailing comma on the last element (for php3) */
|
|
||||||
$this->sCol[count($this->sCol) - 1] = substr($this->sCol[count($this->sCol) - 1],0,-2) . "\n";
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropTable($oProc, &$aTables, $sTableName)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("DROP TABLE " . $sTableName));
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sTableName DROP COLUMN $sColumnName"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("EXEC sp_rename '$sOldTableName', '$sNewTableName'"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
|
|
||||||
{
|
|
||||||
// This really needs testing - it can affect primary keys, and other table-related objects
|
|
||||||
// like sequences and such
|
|
||||||
global $DEBUG;
|
|
||||||
if ($DEBUG) { echo '<br>RenameColumn: calling _GetFieldSQL for ' . $sNewColumnName; }
|
|
||||||
if ($oProc->_GetFieldSQL($aTables[$sTableName]["fd"][$sNewColumnName], $sNewColumnSQL))
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("EXEC sp_rename '$sTableName.$sOldColumnName', '$sNewColumnName'"));
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true)
|
|
||||||
{
|
|
||||||
global $DEBUG;
|
|
||||||
if ($DEBUG) { echo '<br>AlterColumn: calling _GetFieldSQL for ' . $sNewColumnName; }
|
|
||||||
if ($oProc->_GetFieldSQL($aTables[$sTableName]["fd"][$sColumnName], $sNewColumnSQL))
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sTableName ALTER COLUMN $sColumnName " . $sNewColumnSQL));
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
|
|
||||||
{
|
|
||||||
$oProc->_GetFieldSQL($aColumnDef, $sFieldSQL);
|
|
||||||
$query = "ALTER TABLE $sTableName ADD $sColumnName $sFieldSQL";
|
|
||||||
|
|
||||||
return !!($oProc->m_odb->query($query));
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetSequenceSQL($sTableName, &$sSequenceSQL)
|
|
||||||
{
|
|
||||||
$sSequenceSQL = '';
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function CreateTable($oProc, &$aTables, $sTableName, $aTableDef)
|
|
||||||
{
|
|
||||||
if ($oProc->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL,$append_ix))
|
|
||||||
{
|
|
||||||
// create sequence first since it will be needed for default
|
|
||||||
if ($sSequenceSQL != '')
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query($sSequenceSQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
if($append_ix)
|
|
||||||
{
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL)";
|
|
||||||
}
|
|
||||||
|
|
||||||
return !!($oProc->m_odb->query($query));
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,426 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**************************************************************************\
|
|
||||||
* eGroupWare - Setup *
|
|
||||||
* http://www.egroupware.org *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This file written by Michael Dean<mdean@users.sourceforge.net> *
|
|
||||||
* and Miles Lott<milosch@groupwhere.org> *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
|
||||||
* under the terms of the GNU General Public License as published by the *
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
||||||
* option) any later version. *
|
|
||||||
\**************************************************************************/
|
|
||||||
|
|
||||||
/* $Id$ */
|
|
||||||
|
|
||||||
class schema_proc_mysql
|
|
||||||
{
|
|
||||||
var $m_sStatementTerminator;
|
|
||||||
/* Following added to convert sql to array */
|
|
||||||
var $sCol = array();
|
|
||||||
var $pk = array();
|
|
||||||
var $fk = array();
|
|
||||||
var $ix = array();
|
|
||||||
var $uc = array();
|
|
||||||
|
|
||||||
function schema_proc_mysql()
|
|
||||||
{
|
|
||||||
$this->m_sStatementTerminator = ';';
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Return a type suitable for DDL */
|
|
||||||
function TranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = '';
|
|
||||||
switch($sType)
|
|
||||||
{
|
|
||||||
case 'auto':
|
|
||||||
$sTranslated = 'int(11) auto_increment not null';
|
|
||||||
break;
|
|
||||||
case 'blob':
|
|
||||||
$sTranslated = 'blob';
|
|
||||||
break;
|
|
||||||
case 'bool':
|
|
||||||
$sTranslated = 'tinyint(1)';
|
|
||||||
break;
|
|
||||||
case 'char':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("char(%d)", $iPrecision);
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = 'text';
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'date':
|
|
||||||
$sTranslated = 'date';
|
|
||||||
break;
|
|
||||||
case 'decimal':
|
|
||||||
$sTranslated = sprintf("decimal(%d,%d)", $iPrecision, $iScale);
|
|
||||||
break;
|
|
||||||
case 'float':
|
|
||||||
switch($iPrecision)
|
|
||||||
{
|
|
||||||
case 4:
|
|
||||||
$sTranslated = 'float';
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
$sTranslated = 'double';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'int':
|
|
||||||
switch($iPrecision)
|
|
||||||
{
|
|
||||||
case 2:
|
|
||||||
$sTranslated = 'smallint';
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
$sTranslated = 'int';
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
$sTranslated = 'bigint';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'longtext':
|
|
||||||
$sTranslated = 'longtext';
|
|
||||||
break;
|
|
||||||
case 'text':
|
|
||||||
$sTranslated = 'text';
|
|
||||||
break;
|
|
||||||
case 'timestamp':
|
|
||||||
$sTranslated = 'datetime';
|
|
||||||
break;
|
|
||||||
case 'varchar':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("varchar(%d)", $iPrecision);
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = 'text';
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function TranslateDefault($sDefault)
|
|
||||||
{
|
|
||||||
switch($sDefault)
|
|
||||||
{
|
|
||||||
case 'current_date':
|
|
||||||
case 'current_timestamp':
|
|
||||||
$sDefault = 'now';
|
|
||||||
}
|
|
||||||
return "'$sDefault'";
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inverse of above, convert sql column types to array info */
|
|
||||||
function rTranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = '';
|
|
||||||
if($sType == 'int' || $sType == 'tinyint' || $sType == 'smallint' || $sType == 'bigint')
|
|
||||||
{
|
|
||||||
if($iPrecision > 8)
|
|
||||||
{
|
|
||||||
$iPrecision = 8;
|
|
||||||
}
|
|
||||||
elseif($iPrecision > 4)
|
|
||||||
{
|
|
||||||
$iPrecision = 4;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$iPrecision = 2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
switch($sType)
|
|
||||||
{
|
|
||||||
case 'tinyint':
|
|
||||||
case 'smallint':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 2";
|
|
||||||
break;
|
|
||||||
case 'int':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 4";
|
|
||||||
break;
|
|
||||||
case 'bigint':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 8";
|
|
||||||
break;
|
|
||||||
case 'char':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'char', 'precision' => $iPrecision";
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'text'";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'decimal':
|
|
||||||
$sTranslated = "'type' => 'decimal', 'precision' => $iPrecision, 'scale' => $iScale";
|
|
||||||
break;
|
|
||||||
case 'float':
|
|
||||||
case 'double':
|
|
||||||
$sTranslated = "'type' => 'float', 'precision' => $iPrecision";
|
|
||||||
break;
|
|
||||||
case 'datetime':
|
|
||||||
$sTranslated = "'type' => 'timestamp'";
|
|
||||||
break;
|
|
||||||
case 'enum':
|
|
||||||
/* Here comes a nasty assumption */
|
|
||||||
/* $sTranslated = "'type' => 'varchar', 'precision' => 255"; */
|
|
||||||
$sTranslated = "'type' => 'varchar', 'precision' => $iPrecision";
|
|
||||||
break;
|
|
||||||
case 'varchar':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'varchar', 'precision' => $iPrecision";
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'text'";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'longtext':
|
|
||||||
case 'text':
|
|
||||||
case 'blob':
|
|
||||||
case 'date':
|
|
||||||
$sTranslated = "'type' => '$sType'";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetPKSQL($sFields)
|
|
||||||
{
|
|
||||||
return "PRIMARY KEY($sFields)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetUCSQL($sFields)
|
|
||||||
{
|
|
||||||
return "UNIQUE($sFields)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetIXSQL($sFields,&$append,$options=False)
|
|
||||||
{
|
|
||||||
$append = False;
|
|
||||||
$type = 'INDEX';
|
|
||||||
$length = '';
|
|
||||||
if(strtoupper($options) == 'FULLTEXT')
|
|
||||||
{
|
|
||||||
$type = 'FULLTEXT';
|
|
||||||
}
|
|
||||||
if(is_numeric($options))
|
|
||||||
{
|
|
||||||
$length = "($options)";
|
|
||||||
}
|
|
||||||
return "$type($sFields $length)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function _GetColumns($oProc, $sTableName, &$sColumns, $sDropColumn = '')
|
|
||||||
{
|
|
||||||
$sColumns = '';
|
|
||||||
$this->pk = array();
|
|
||||||
$this->fk = array();
|
|
||||||
$this->ix = array();
|
|
||||||
$this->uc = array();
|
|
||||||
|
|
||||||
/* Field, Type, Null, Key, Default, Extra */
|
|
||||||
$oProc->m_odb->query("describe $sTableName");
|
|
||||||
while($oProc->m_odb->next_record())
|
|
||||||
{
|
|
||||||
$type = $default = $null = $nullcomma = $prec = $scale = $ret = $colinfo = $scales = '';
|
|
||||||
if($sColumns != '')
|
|
||||||
{
|
|
||||||
$sColumns .= ',';
|
|
||||||
}
|
|
||||||
$sColumns .= $oProc->m_odb->f(0);
|
|
||||||
|
|
||||||
/* The rest of this is used only for SQL->array */
|
|
||||||
$colinfo = explode('(',$oProc->m_odb->f(1));
|
|
||||||
$prec = ereg_replace('\).*','',$colinfo[1]);
|
|
||||||
$scales = explode(',',$prec);
|
|
||||||
|
|
||||||
if($colinfo[0] == 'enum')
|
|
||||||
{
|
|
||||||
/* set prec to length of longest enum-value */
|
|
||||||
for($prec=0; list($nul,$name) = @each($scales);)
|
|
||||||
{
|
|
||||||
if($prec < (strlen($name) - 2))
|
|
||||||
{
|
|
||||||
/* -2 as name is like "'name'" */
|
|
||||||
$prec = (strlen($name) - 2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
elseif($scales[1])
|
|
||||||
{
|
|
||||||
$prec = $scales[0];
|
|
||||||
$scale = $scales[1];
|
|
||||||
}
|
|
||||||
$type = $this->rTranslateType($colinfo[0], $prec, $scale);
|
|
||||||
|
|
||||||
if($oProc->m_odb->f(2) == 'YES')
|
|
||||||
{
|
|
||||||
$null = "'nullable' => True";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$null = "'nullable' => False";
|
|
||||||
}
|
|
||||||
if($oProc->m_odb->f(4) != '')
|
|
||||||
{
|
|
||||||
$default = "'default' => '".$oProc->m_odb->f(4)."'";
|
|
||||||
$nullcomma = ',';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$default = '';
|
|
||||||
$nullcomma = '';
|
|
||||||
}
|
|
||||||
if($oProc->m_odb->f(5))
|
|
||||||
{
|
|
||||||
$type = "'type' => 'auto'";
|
|
||||||
}
|
|
||||||
$this->sCol[] = "\t\t\t\t'" . $oProc->m_odb->f(0)."' => array(" . $type . ',' . $null . $nullcomma . $default . '),' . "\n";
|
|
||||||
/*
|
|
||||||
if($oProc->m_odb->f(3) == 'PRI')
|
|
||||||
{
|
|
||||||
$this->pk[] = $oProc->m_odb->f(0);
|
|
||||||
}
|
|
||||||
if($oProc->m_odb->f(3) == 'UNI')
|
|
||||||
{
|
|
||||||
$this->uc[] = $oProc->m_odb->f(0);
|
|
||||||
}
|
|
||||||
// index over multiple columns
|
|
||||||
if($oProc->m_odb->f(3) == 'MUL')
|
|
||||||
{
|
|
||||||
$this->ix[] = $oProc->m_odb->f(0);
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
$this->_GetIndices($oProc,$sTableName,$this->pk,$this->ix,$this->uc,$this->fk);
|
|
||||||
|
|
||||||
/* ugly as heck, but is here to chop the trailing comma on the last element (for php3) */
|
|
||||||
$this->sCol[count($this->sCol) - 1] = substr($this->sCol[count($this->sCol) - 1],0,-2) . "\n";
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function _GetIndices($oProc,$sTableName,&$aPk,&$aIx,&$aUc,&$aFk)
|
|
||||||
{
|
|
||||||
$aPk = $aIx = $aUc = $aFk = array();
|
|
||||||
$seq = $ix = $uc = 0;
|
|
||||||
|
|
||||||
$oProc->m_odb->query("show index from $sTableName");
|
|
||||||
while($oProc->m_odb->next_record())
|
|
||||||
{
|
|
||||||
if($seq >= $oProc->m_odb->f('Seq_in_index')) // new index started
|
|
||||||
{
|
|
||||||
$$type += 1;
|
|
||||||
}
|
|
||||||
if($oProc->m_odb->f('Key_name') == 'PRIMARY') // pk
|
|
||||||
{
|
|
||||||
$aPk[] = $oProc->m_odb->f('Column_name');
|
|
||||||
$type = 'pk';
|
|
||||||
}
|
|
||||||
elseif($oProc->m_odb->f('Non_unique')) // ix
|
|
||||||
{
|
|
||||||
$aIx[$ix][] = $oProc->m_odb->f('Column_name');
|
|
||||||
$type = 'ix';
|
|
||||||
if($oProc->m_odb->f('Comment') == 'FULLTEXT')
|
|
||||||
{
|
|
||||||
$aIx[$ix]['options'] = array('mysql' => 'FULLTEXT');
|
|
||||||
}
|
|
||||||
elseif((int)$oProc->m_odb->f('Sub_part'))
|
|
||||||
{
|
|
||||||
$aIx[$ix]['options'] = array('mysql' => (int)$oProc->m_odb->f('Sub_part'));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else // uc
|
|
||||||
{
|
|
||||||
$aUc[$uc][] = $oProc->m_odb->f('Column_name');
|
|
||||||
$type = 'uc';
|
|
||||||
}
|
|
||||||
$seq = $oProc->m_odb->f('Seq_in_index');
|
|
||||||
}
|
|
||||||
//echo "Indices from $sTableName<pre>pk=".print_r($aPk,True)."\nix=".print_r($aIx,True)."\nuc=".print_r($aUc,True)."</pre>\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropTable($oProc, &$aTables, $sTableName)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("DROP TABLE " . $sTableName));
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sTableName DROP COLUMN $sColumnName"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sOldTableName RENAME $sNewTableName"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
TODO: This really needs testing - it can affect primary keys, and other table-related objects
|
|
||||||
like sequences and such
|
|
||||||
*/
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameColumn: calling _GetFieldSQL for ' . $sNewColumnName; }
|
|
||||||
if($oProc->_GetFieldSQL($aTables[$sTableName]["fd"][$sNewColumnName], $sNewColumnSQL))
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sTableName CHANGE $sOldColumnName $sNewColumnName " . $sNewColumnSQL));
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>AlterColumn: calling _GetFieldSQL for ' . $sNewColumnName; }
|
|
||||||
if($oProc->_GetFieldSQL($aTables[$sTableName]["fd"][$sColumnName], $sNewColumnSQL))
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sTableName MODIFY $sColumnName " . $sNewColumnSQL));
|
|
||||||
/* return !!($oProc->m_odb->query("ALTER TABLE $sTableName CHANGE $sColumnName $sColumnName " . $sNewColumnSQL)); */
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
|
|
||||||
{
|
|
||||||
$oProc->_GetFieldSQL($aColumnDef, $sFieldSQL);
|
|
||||||
$query = "ALTER TABLE $sTableName ADD COLUMN $sColumnName $sFieldSQL";
|
|
||||||
|
|
||||||
return !!($oProc->m_odb->query($query));
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetSequenceSQL($sTableName, &$sSequenceSQL)
|
|
||||||
{
|
|
||||||
$sSequenceSQL = '';
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function CreateTable($oProc, &$aTables, $sTableName, $aTableDef)
|
|
||||||
{
|
|
||||||
if($oProc->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL,$append_ix))
|
|
||||||
{
|
|
||||||
/* create sequence first since it will be needed for default */
|
|
||||||
if($sSequenceSQL != '')
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query($sSequenceSQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL)";
|
|
||||||
return !!($oProc->m_odb->query($query));
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
@ -1,748 +0,0 @@
|
|||||||
<?php
|
|
||||||
/**************************************************************************\
|
|
||||||
* eGroupWare - Setup *
|
|
||||||
* http://www.egroupware.org *
|
|
||||||
* SQL for table properties taken from phpPgAdmin Version 2.2.1 *
|
|
||||||
* http://www.greatbridge.org/project/phppgadmin *
|
|
||||||
* Copyright (C) 1999-2000 Dan Wilson <phpPgAdmin@acucore.com> *
|
|
||||||
* Copyright (C) 1998-1999 Tobias Ratschiller <tobias@dnet.it> *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This file written by Michael Dean<mdean@users.sourceforge.net> *
|
|
||||||
* and Miles Lott<milosch@groupwhere.org> *
|
|
||||||
* -------------------------------------------- *
|
|
||||||
* This program is free software; you can redistribute it and/or modify it *
|
|
||||||
* under the terms of the GNU General Public License as published by the *
|
|
||||||
* Free Software Foundation; either version 2 of the License, or (at your *
|
|
||||||
* option) any later version. *
|
|
||||||
\**************************************************************************/
|
|
||||||
|
|
||||||
/* $Id$ */
|
|
||||||
|
|
||||||
class schema_proc_pgsql
|
|
||||||
{
|
|
||||||
var $m_sStatementTerminator;
|
|
||||||
/* Following added to convert sql to array */
|
|
||||||
var $sCol = array();
|
|
||||||
var $pk = array();
|
|
||||||
var $fk = array();
|
|
||||||
var $ix = array();
|
|
||||||
var $uc = array();
|
|
||||||
|
|
||||||
function schema_proc_pgsql()
|
|
||||||
{
|
|
||||||
$this->m_sStatementTerminator = ';';
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Return a type suitable for DDL */
|
|
||||||
function TranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = $sType;
|
|
||||||
switch($sType)
|
|
||||||
{
|
|
||||||
case 'auto':
|
|
||||||
$sTranslated = 'int4';
|
|
||||||
break;
|
|
||||||
case 'blob':
|
|
||||||
$sTranslated = 'bytea';
|
|
||||||
break;
|
|
||||||
case 'char':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("char(%d)", $iPrecision);
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = 'text';
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'decimal':
|
|
||||||
$sTranslated = sprintf("decimal(%d,%d)", $iPrecision, $iScale);
|
|
||||||
break;
|
|
||||||
case 'float':
|
|
||||||
if($iPrecision == 4 || $iPrecision == 8)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("float%d", $iPrecision);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'int':
|
|
||||||
if($iPrecision == 2 || $iPrecision == 4 || $iPrecision == 8)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("int%d", $iPrecision);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'longtext':
|
|
||||||
$sTranslated = 'text';
|
|
||||||
break;
|
|
||||||
case 'varchar':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = sprintf("varchar(%d)", $iPrecision);
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = 'text';
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function TranslateDefault($sDefault)
|
|
||||||
{
|
|
||||||
switch($sDefault)
|
|
||||||
{
|
|
||||||
case 'current_date':
|
|
||||||
case 'current_timestamp':
|
|
||||||
$sDefault = 'now';
|
|
||||||
}
|
|
||||||
return "'$sDefault'";
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inverse of above, convert sql column types to array info */
|
|
||||||
function rTranslateType($sType, $iPrecision = 0, $iScale = 0)
|
|
||||||
{
|
|
||||||
$sTranslated = '';
|
|
||||||
switch($sType)
|
|
||||||
{
|
|
||||||
case 'serial':
|
|
||||||
$sTranslated = "'type' => 'auto'";
|
|
||||||
break;
|
|
||||||
case 'int2':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 2";
|
|
||||||
break;
|
|
||||||
case 'int4':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 4";
|
|
||||||
break;
|
|
||||||
case 'int8':
|
|
||||||
$sTranslated = "'type' => 'int', 'precision' => 8";
|
|
||||||
break;
|
|
||||||
case 'bpchar':
|
|
||||||
case 'char':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'char', 'precision' => $iPrecision";
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'text'";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'numeric':
|
|
||||||
/* Borrowed from phpPgAdmin */
|
|
||||||
$iPrecision = ($iScale >> 16) & 0xffff;
|
|
||||||
$iScale = ($iScale - 4) & 0xffff;
|
|
||||||
$sTranslated = "'type' => 'decimal', 'precision' => $iPrecision, 'scale' => $iScale";
|
|
||||||
break;
|
|
||||||
case 'float':
|
|
||||||
case 'float4':
|
|
||||||
case 'float8':
|
|
||||||
case 'double':
|
|
||||||
$sTranslated = "'type' => 'float', 'precision' => $iPrecision";
|
|
||||||
break;
|
|
||||||
case 'datetime':
|
|
||||||
case 'timestamp':
|
|
||||||
$sTranslated = "'type' => 'timestamp'";
|
|
||||||
break;
|
|
||||||
case 'varchar':
|
|
||||||
if($iPrecision > 0 && $iPrecision < 256)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'varchar', 'precision' => $iPrecision";
|
|
||||||
}
|
|
||||||
if($iPrecision > 255)
|
|
||||||
{
|
|
||||||
$sTranslated = "'type' => 'text'";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'text':
|
|
||||||
case 'blob':
|
|
||||||
case 'date':
|
|
||||||
case 'bool';
|
|
||||||
$sTranslated = "'type' => '$sType'";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return $sTranslated;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetPKSQL($sFields)
|
|
||||||
{
|
|
||||||
return "PRIMARY KEY($sFields)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetUCSQL($sFields)
|
|
||||||
{
|
|
||||||
return "UNIQUE($sFields)";
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetIXSQL($sFields,&$append,$options,$sTableName)
|
|
||||||
{
|
|
||||||
$append = True;
|
|
||||||
$ixsql = '';
|
|
||||||
$ixFields = str_replace(',','_',$sFields);
|
|
||||||
$index = $sTableName . '_' . $ixFields . '_idx';
|
|
||||||
return "CREATE INDEX $index ON $sTableName ($sFields);\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
function _GetColumns($oProc, $sTableName, &$sColumns, $sDropColumn='', $sAlteredColumn='', $sAlteredColumnType='')
|
|
||||||
{
|
|
||||||
$sdb = $oProc->m_odb;
|
|
||||||
$sdc = $oProc->m_odb;
|
|
||||||
|
|
||||||
$sColumns = '';
|
|
||||||
$this->pk = array();
|
|
||||||
$this->fk = array();
|
|
||||||
$this->ix = array();
|
|
||||||
$this->uc = array();
|
|
||||||
|
|
||||||
$query = "SELECT a.attname,a.attnum FROM pg_attribute a,pg_class b WHERE ";
|
|
||||||
$query .= "b.oid=a.attrelid AND a.attnum>0 and b.relname='$sTableName'";
|
|
||||||
if($sDropColumn != '')
|
|
||||||
{
|
|
||||||
$query .= " AND a.attname != '$sDropColumn'";
|
|
||||||
}
|
|
||||||
$query .= ' ORDER BY a.attnum';
|
|
||||||
|
|
||||||
// echo '_GetColumns: ' . $query;
|
|
||||||
|
|
||||||
$oProc->m_odb->query($query);
|
|
||||||
while($oProc->m_odb->next_record())
|
|
||||||
{
|
|
||||||
if($sColumns != '')
|
|
||||||
{
|
|
||||||
$sColumns .= ',';
|
|
||||||
}
|
|
||||||
|
|
||||||
$sFieldName = $oProc->m_odb->f(0);
|
|
||||||
/* Failsafe in case the query still includes the column to be dropped */
|
|
||||||
if($sFieldName != $sDropColumn)
|
|
||||||
{
|
|
||||||
$sColumns .= $sFieldName;
|
|
||||||
}
|
|
||||||
if($sAlteredColumn == $sFieldName && $sAlteredColumnType != '')
|
|
||||||
{
|
|
||||||
$sColumns .= '::' . $sAlteredColumnType;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//$qdefault = "SELECT substring(d.adsrc for 128) FROM pg_attrdef d, pg_class c "
|
|
||||||
// . "WHERE c.relname = $sTableName AND c.oid = d.adrelid AND d.adnum =" . $oProc->m_odb->f(1);
|
|
||||||
$sql_get_fields = "
|
|
||||||
SELECT
|
|
||||||
a.attnum,
|
|
||||||
a.attname AS field,
|
|
||||||
t.typname AS type,
|
|
||||||
a.attlen AS length,
|
|
||||||
a.atttypmod AS lengthvar,
|
|
||||||
a.attnotnull AS notnull
|
|
||||||
FROM
|
|
||||||
pg_class c,
|
|
||||||
pg_attribute a,
|
|
||||||
pg_type t
|
|
||||||
WHERE
|
|
||||||
c.relname = '$sTableName'
|
|
||||||
and a.attnum > 0
|
|
||||||
and a.attrelid = c.oid
|
|
||||||
and a.atttypid = t.oid
|
|
||||||
ORDER BY a.attnum";
|
|
||||||
/* attnum field type length lengthvar notnull(Yes/No) */
|
|
||||||
$sdb->query($sql_get_fields);
|
|
||||||
while($sdb->next_record())
|
|
||||||
{
|
|
||||||
$colnum = $sdb->f(0);
|
|
||||||
$colname = $sdb->f(1);
|
|
||||||
|
|
||||||
if($sdb->f(5) == 'Yes')
|
|
||||||
{
|
|
||||||
$null = "'nullable' => True";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$null = "'nullable' => False";
|
|
||||||
}
|
|
||||||
|
|
||||||
if($sdb->f(2) == 'numeric')
|
|
||||||
{
|
|
||||||
$prec = $sdb->f(3);
|
|
||||||
$scale = $sdb->f(4);
|
|
||||||
}
|
|
||||||
elseif($sdb->f(3) > 0)
|
|
||||||
{
|
|
||||||
$prec = $sdb->f(3);
|
|
||||||
$scale = 0;
|
|
||||||
}
|
|
||||||
elseif($sdb->f(4) > 0)
|
|
||||||
{
|
|
||||||
$prec = $sdb->f(4) - 4;
|
|
||||||
$scale = 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$prec = 0;
|
|
||||||
$scale = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
$type = $this->rTranslateType($sdb->f(2), $prec, $scale);
|
|
||||||
|
|
||||||
$sql_get_default = "
|
|
||||||
SELECT d.adsrc AS rowdefault
|
|
||||||
FROM pg_attrdef d, pg_class c
|
|
||||||
WHERE
|
|
||||||
c.relname = '$sTableName' AND
|
|
||||||
c.oid = d.adrelid AND
|
|
||||||
d.adnum = $colnum
|
|
||||||
";
|
|
||||||
$sdc->query($sql_get_default);
|
|
||||||
$sdc->next_record();
|
|
||||||
if($sdc->f(0))
|
|
||||||
{
|
|
||||||
if(strstr($sdc->f(0),'nextval'))
|
|
||||||
{
|
|
||||||
$default = '';
|
|
||||||
$nullcomma = '';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$default = "'default' => '".$sdc->f(0)."'";
|
|
||||||
$nullcomma = ',';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$default = '';
|
|
||||||
$nullcomma = '';
|
|
||||||
}
|
|
||||||
$default = str_replace("''","'",$default);
|
|
||||||
|
|
||||||
$this->sCol[] = "\t\t\t\t'" . $colname . "' => array(" . $type . ',' . $null . $nullcomma . $default . '),' . "\n";
|
|
||||||
}
|
|
||||||
$sql_pri_keys = "
|
|
||||||
SELECT
|
|
||||||
ic.relname AS index_name,
|
|
||||||
bc.relname AS tab_name,
|
|
||||||
ta.attname AS column_name,
|
|
||||||
i.indisunique AS unique_key,
|
|
||||||
i.indisprimary AS primary_key
|
|
||||||
FROM
|
|
||||||
pg_class bc,
|
|
||||||
pg_class ic,
|
|
||||||
pg_index i,
|
|
||||||
pg_attribute ta,
|
|
||||||
pg_attribute ia
|
|
||||||
WHERE
|
|
||||||
bc.oid = i.indrelid
|
|
||||||
AND ic.oid = i.indexrelid
|
|
||||||
AND ia.attrelid = i.indexrelid
|
|
||||||
AND ta.attrelid = bc.oid
|
|
||||||
AND bc.relname = '$sTableName'
|
|
||||||
AND ta.attrelid = i.indrelid
|
|
||||||
AND ta.attnum = i.indkey[ia.attnum-1]
|
|
||||||
ORDER BY
|
|
||||||
index_name, tab_name, column_name";
|
|
||||||
$sdc->query($sql_pri_keys);
|
|
||||||
while($sdc->next_record())
|
|
||||||
{
|
|
||||||
//echo '<br> checking: ' . $sdc->f(4);
|
|
||||||
if($sdc->f(4) == 't')
|
|
||||||
{
|
|
||||||
$this->pk[] = $sdc->f(2);
|
|
||||||
}
|
|
||||||
if($sdc->f(3) == 't')
|
|
||||||
{
|
|
||||||
$this->uc[] = $sdc->f(2);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$this->_GetIndices($oProc,$sTableName,$this->pk,$this->ix,$this->uc,$this->fk);
|
|
||||||
|
|
||||||
/* ugly as heck, but is here to chop the trailing comma on the last element (for php3) */
|
|
||||||
$this->sCol[count($this->sCol) - 1] = substr($this->sCol[count($this->sCol) - 1],0,-2) . "\n";
|
|
||||||
|
|
||||||
return False;
|
|
||||||
}
|
|
||||||
|
|
||||||
function _GetIndices($oProc,$sTableName,&$aPk,&$aIx,&$aUc,&$aFk)
|
|
||||||
{
|
|
||||||
/* Try not to die on errors with the query */
|
|
||||||
$tmp = $oProc->Halt_On_Error;
|
|
||||||
$oProc->Halt_On_Error = 'no';
|
|
||||||
$aIx = array();
|
|
||||||
/* This select excludes any indexes that are just base indexes for constraints. */
|
|
||||||
|
|
||||||
if(@$oProc->m_odb->db_version >= 7.3)
|
|
||||||
{
|
|
||||||
$sql = "SELECT pg_catalog.pg_get_indexdef(i.indexrelid) as pg_get_indexdef FROM pg_catalog.pg_class c, pg_catalog.pg_class c2, pg_catalog.pg_index i WHERE c.relname = '$sTableName' AND pg_catalog.pg_table_is_visible(c.oid) AND c.oid = i.indrelid AND i.indexrelid = c2.oid AND NOT EXISTS ( SELECT 1 FROM pg_catalog.pg_depend d JOIN pg_catalog.pg_constraint c ON (d.refclassid = c.tableoid AND d.refobjid = c.oid) WHERE d.classid = c2.tableoid AND d.objid = c2.oid AND d.deptype = 'i' AND c.contype IN ('u', 'p') ) ORDER BY c2.relname";
|
|
||||||
$num = 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$sql = "SELECT c2.relname, i.indisprimary, i.indisunique, pg_get_indexdef(i.indexrelid) FROM pg_class c, pg_class c2, pg_index i WHERE c.relname = '$sTableName' AND c.oid = i.indrelid AND i.indexrelid = c2.oid AND NOT i.indisprimary AND NOT i.indisunique ORDER BY c2.relname";
|
|
||||||
$num = 3;
|
|
||||||
}
|
|
||||||
|
|
||||||
@$oProc->m_odb->query($sql);
|
|
||||||
$oProc->m_odb->next_record();
|
|
||||||
$indexfields = ereg_replace("^CREATE.+\(",'',$oProc->m_odb->f($num));
|
|
||||||
$indexfields = ereg_replace("\)$",'',$indexfields);
|
|
||||||
$aIx = explode(',',$indexfields);
|
|
||||||
$i = 0;
|
|
||||||
foreach($aIx as $ix)
|
|
||||||
{
|
|
||||||
$aIx[$i] = trim($ix);
|
|
||||||
$i++;
|
|
||||||
}
|
|
||||||
/* Restore original value */
|
|
||||||
$oProc->Halt_On_Error = $tmp;
|
|
||||||
#echo "Indices from $sTableName<pre>pk=".print_r($aPk,True)."\nix=".print_r($aIx,True)."\nuc=".print_r($aUc,True)."</pre>\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
function _CopyAlteredTable($oProc, &$aTables, $sSource, $sDest)
|
|
||||||
{
|
|
||||||
$oDB = $oProc->m_odb;
|
|
||||||
$oProc->m_odb->query("SELECT * FROM $sSource");
|
|
||||||
while($oProc->m_odb->next_record())
|
|
||||||
{
|
|
||||||
$sSQL = "INSERT INTO $sDest (";
|
|
||||||
$i=0;
|
|
||||||
@reset($aTables[$sDest]['fd']);
|
|
||||||
while(list($name,$arraydef) = each($aTables[$sDest]['fd']))
|
|
||||||
{
|
|
||||||
if($i > 0)
|
|
||||||
{
|
|
||||||
$sSQL .= ',';
|
|
||||||
}
|
|
||||||
|
|
||||||
$sSQL .= $name;
|
|
||||||
$i++;
|
|
||||||
}
|
|
||||||
|
|
||||||
$sSQL .= ') VALUES (';
|
|
||||||
@reset($aTables[$sDest]['fd']);
|
|
||||||
$i = 0;
|
|
||||||
while(list($name,$arraydef) = each($aTables[$sDest]['fd']))
|
|
||||||
{
|
|
||||||
if($i > 0)
|
|
||||||
{
|
|
||||||
$sSQL .= ',';
|
|
||||||
}
|
|
||||||
|
|
||||||
// !isset($arraydef['nullable']) means nullable !!!
|
|
||||||
if($oProc->m_odb->f($name) == NULL && (!isset($arraydef['nullable']) || $arraydef['nullable']))
|
|
||||||
{
|
|
||||||
$sSQL .= 'NULL';
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$value = $oProc->m_odb->f($name) != NULL ? $oProc->m_odb->f($name) : @$arraydef['default'];
|
|
||||||
switch($arraydef['type'])
|
|
||||||
{
|
|
||||||
case 'blob':
|
|
||||||
case 'char':
|
|
||||||
case 'date':
|
|
||||||
case 'text':
|
|
||||||
case 'timestamp':
|
|
||||||
case 'varchar':
|
|
||||||
$sSQL .= "'" . $oProc->m_odb->db_addslashes($oProc->m_odb->f($name)) . "'";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
$sSQL .= (int)$oProc->m_odb->f($name);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$i++;
|
|
||||||
}
|
|
||||||
$sSQL .= ')';
|
|
||||||
|
|
||||||
$oDB->query($sSQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetSequenceForTable($oProc,$table,&$sSequenceName)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>GetSequenceForTable: ' . $table; }
|
|
||||||
|
|
||||||
$oProc->m_odb->query("SELECT relname FROM pg_class WHERE NOT relname ~ 'pg_.*' AND relname LIKE 'seq_$table' AND relkind='S' ORDER BY relname",__LINE__,__FILE__);
|
|
||||||
$oProc->m_odb->next_record();
|
|
||||||
if($oProc->m_odb->f('relname'))
|
|
||||||
{
|
|
||||||
$sSequenceName = $oProc->m_odb->f('relname');
|
|
||||||
}
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetSequenceFieldForTable($oProc,$table,&$sField)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>GetSequenceFieldForTable: You rang?'; }
|
|
||||||
|
|
||||||
$oProc->m_odb->query("SELECT a.attname FROM pg_attribute a, pg_class c, pg_attrdef d WHERE c.relname='$table' AND c.oid=d.adrelid AND d.adsrc LIKE '%seq_$table%' AND a.attrelid=c.oid AND d.adnum=a.attnum");
|
|
||||||
$oProc->m_odb->next_record();
|
|
||||||
if($oProc->m_odb->f('attname'))
|
|
||||||
{
|
|
||||||
$sField = $oProc->m_odb->f('attname');
|
|
||||||
}
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetIndexesForTable($oProc,$table,&$sIndexNames)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("SELECT a.attname FROM pg_attribute a, pg_class c, pg_attrdef d WHERE c.relname='$table' AND c.oid=d.adrelid AND d.adsrc LIKE '%$table%idx' AND a.attrelid=c.oid AND d.adnum=a.attnum");
|
|
||||||
while($oProc->m_odb->next_record())
|
|
||||||
{
|
|
||||||
$sIndexNames[] = $oProc->m_odb->f('attname');
|
|
||||||
}
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropSequenceForTable($oProc,$table)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>DropSequenceForTable: ' . $table; }
|
|
||||||
|
|
||||||
$this->GetSequenceForTable($oProc,$table,$sSequenceName);
|
|
||||||
if($sSequenceName)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("DROP SEQUENCE " . $sSequenceName,__LINE__,__FILE__);
|
|
||||||
}
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropIndexesForTable($oProc,$table)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>DropSequenceForTable: ' . $table; }
|
|
||||||
|
|
||||||
$this->GetIndexesForTable($oProc,$table,$sIndexNames);
|
|
||||||
if(@is_array($sIndexNames))
|
|
||||||
{
|
|
||||||
foreach($sIndexNames as $null => $index)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("DROP INDEX $index",__LINE__,__FILE__);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropTable($oProc, &$aTables, $sTableName)
|
|
||||||
{
|
|
||||||
$this->DropSequenceForTable($oProc,$sTableName);
|
|
||||||
|
|
||||||
return $oProc->m_odb->query("DROP TABLE " . $sTableName) &&
|
|
||||||
$this->DropSequenceForTable($oProc, $sTableName) &&
|
|
||||||
$this->DropIndexesForTable($oProc, $sTableName);
|
|
||||||
}
|
|
||||||
|
|
||||||
function DropColumn($oProc, &$aTables, $sTableName, $aNewTableDef, $sColumnName, $bCopyData = true)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG'])
|
|
||||||
{
|
|
||||||
echo '<br>DropColumn: table=' . $sTableName . ', column=' . $sColumnName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($bCopyData)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName");
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->DropTable($oProc, $aTables, $sTableName);
|
|
||||||
|
|
||||||
$oProc->_GetTableSQL($sTableName, $aNewTableDef, $sTableSQL, $sSequenceSQL,$append_ix);
|
|
||||||
if($sSequenceSQL)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query($sSequenceSQL);
|
|
||||||
}
|
|
||||||
if($append_ix)
|
|
||||||
{
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL)";
|
|
||||||
}
|
|
||||||
if(!$bCopyData)
|
|
||||||
{
|
|
||||||
return !!($oProc->m_odb->query($query));
|
|
||||||
}
|
|
||||||
|
|
||||||
$oProc->m_odb->query($query);
|
|
||||||
$this->_GetColumns($oProc, $sTableName . '_tmp', $sColumns, $sColumnName);
|
|
||||||
$query = "INSERT INTO $sTableName($sColumns) SELECT $sColumns FROM $sTableName" . '_tmp';
|
|
||||||
$bRet = !!($oProc->m_odb->query($query));
|
|
||||||
return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . '_tmp'));
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameTable($oProc, &$aTables, $sOldTableName, $sNewTableName)
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Fetching old sequence for: ' . $sOldTableName; }
|
|
||||||
$this->GetSequenceForTable($oProc,$sOldTableName,$sSequenceName);
|
|
||||||
|
|
||||||
if($GLOBALS['DEBUG']) { echo ' - ' . $sSequenceName; }
|
|
||||||
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Fetching sequence field for: ' . $sOldTableName; }
|
|
||||||
$this->GetSequenceFieldForTable($oProc,$sOldTableName,$sField);
|
|
||||||
|
|
||||||
if($GLOBALS['DEBUG']) { echo ' - ' . $sField; }
|
|
||||||
|
|
||||||
if($sSequenceName)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("SELECT last_value FROM seq_$sOldTableName",__LINE__,__FILE__);
|
|
||||||
$oProc->m_odb->next_record();
|
|
||||||
$lastval = $oProc->m_odb->f(0);
|
|
||||||
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): dropping old sequence: ' . $sSequenceName . ' used on field: ' . $sField; }
|
|
||||||
$this->DropSequenceForTable($oProc,$sOldTableName);
|
|
||||||
|
|
||||||
if($lastval)
|
|
||||||
{
|
|
||||||
$lastval = ' start ' . $lastval;
|
|
||||||
}
|
|
||||||
$this->GetSequenceSQL($sNewTableName,$sSequenceSQL);
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Making new sequence using: ' . $sSequenceSQL . $lastval; }
|
|
||||||
$oProc->m_odb->query($sSequenceSQL . $lastval,__LINE__,__FILE__);
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Altering column default for: ' . $sField; }
|
|
||||||
$oProc->m_odb->query("ALTER TABLE $sOldTableName ALTER $sField SET DEFAULT nextval('seq_" . $sNewTableName . "')",__LINE__,__FILE__);
|
|
||||||
}
|
|
||||||
// renameing existing indexes and primary keys
|
|
||||||
$indexes = $oProc->m_odb->Link_ID->MetaIndexes($sOldTableName,True);
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>RenameTable(): Fetching indexes: '; _debug_array($indexes); }
|
|
||||||
foreach($indexes as $name => $data)
|
|
||||||
{
|
|
||||||
$new_name = str_replace($sOldTableName,$sNewTableName,$name);
|
|
||||||
$sql = "ALTER TABLE $name RENAME TO $new_name";
|
|
||||||
if($GLOBALS['DEBUG']) { echo "<br>RenameTable(): Renaming the index '$name': $sql"; }
|
|
||||||
$oProc->m_odb->query($sql);
|
|
||||||
}
|
|
||||||
return !!($oProc->m_odb->query("ALTER TABLE $sOldTableName RENAME TO $sNewTableName"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function RenameColumn($oProc, &$aTables, $sTableName, $sOldColumnName, $sNewColumnName, $bCopyData = true)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
This really needs testing - it can affect primary keys, and other table-related objects
|
|
||||||
like sequences and such
|
|
||||||
*/
|
|
||||||
if($bCopyData)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName");
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->DropTable($oProc, $aTables, $sTableName);
|
|
||||||
|
|
||||||
if(!$bCopyData)
|
|
||||||
{
|
|
||||||
return $this->CreateTable($oProc, $aTables, $sTableName, $oProc->m_aTables[$sTableName], false);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], True);
|
|
||||||
$this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns);
|
|
||||||
$query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp";
|
|
||||||
|
|
||||||
$bRet = !!($oProc->m_odb->query($query));
|
|
||||||
return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function AlterColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef, $bCopyData = true)
|
|
||||||
{
|
|
||||||
if($bCopyData)
|
|
||||||
{
|
|
||||||
$oProc->m_odb->query("SELECT * INTO $sTableName" . "_tmp FROM $sTableName");
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->DropTable($oProc, $aTables, $sTableName);
|
|
||||||
|
|
||||||
if(!$bCopyData)
|
|
||||||
{
|
|
||||||
return $this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], True);
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->CreateTable($oProc, $aTables, $sTableName, $aTables[$sTableName], True);
|
|
||||||
$this->_GetColumns($oProc, $sTableName . "_tmp", $sColumns, '', $sColumnName, $aColumnDef['type'] == 'auto' ? 'int4' : $aColumnDef['type']);
|
|
||||||
|
|
||||||
/*
|
|
||||||
TODO: analyze the type of change and determine if this is used or _CopyAlteredTable
|
|
||||||
this is a performance consideration only, _CopyAlteredTable should be safe
|
|
||||||
$query = "INSERT INTO $sTableName SELECT $sColumns FROM $sTableName" . "_tmp";
|
|
||||||
$bRet = !!($oProc->m_odb->query($query));
|
|
||||||
*/
|
|
||||||
|
|
||||||
$bRet = $this->_CopyAlteredTable($oProc, $aTables, $sTableName . '_tmp', $sTableName);
|
|
||||||
|
|
||||||
return ($bRet && $this->DropTable($oProc, $aTables, $sTableName . "_tmp"));
|
|
||||||
}
|
|
||||||
|
|
||||||
function AddColumn($oProc, &$aTables, $sTableName, $sColumnName, &$aColumnDef)
|
|
||||||
{
|
|
||||||
if(isset($aColumnDef['default'])) // pgsql cant add a colum with a default
|
|
||||||
{
|
|
||||||
$default = $aColumnDef['default'];
|
|
||||||
unset($aColumnDef['default']);
|
|
||||||
}
|
|
||||||
if(isset($aColumnDef['nullable']) && !$aColumnDef['nullable']) // pgsql cant add a column not nullable
|
|
||||||
{
|
|
||||||
$notnull = !$aColumnDef['nullable'];
|
|
||||||
unset($aColumnDef['nullable']);
|
|
||||||
}
|
|
||||||
$oProc->_GetFieldSQL($aColumnDef, $sFieldSQL);
|
|
||||||
$query = "ALTER TABLE $sTableName ADD COLUMN $sColumnName $sFieldSQL";
|
|
||||||
|
|
||||||
if(($Ok = !!($oProc->m_odb->query($query))) && isset($default))
|
|
||||||
{
|
|
||||||
$query = "ALTER TABLE $sTableName ALTER COLUMN $sColumnName SET DEFAULT '$default';\n";
|
|
||||||
|
|
||||||
$query .= "UPDATE $sTableName SET $sColumnName='$default';\n";
|
|
||||||
|
|
||||||
$Ok = !!($oProc->m_odb->query($query));
|
|
||||||
|
|
||||||
if($OK && $notnull)
|
|
||||||
{
|
|
||||||
// unfortunally this is pgSQL >= 7.3
|
|
||||||
//$query .= "ALTER TABLE $sTableName ALTER COLUMN $sColumnName SET NOT NULL;\n";
|
|
||||||
//$Ok = !!($oProc->m_odb->query($query));
|
|
||||||
// so we do it the slow way
|
|
||||||
AlterColumn($oProc, $aTables, $sTableName, $sColumnName, $aColumnDef);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return $Ok;
|
|
||||||
}
|
|
||||||
|
|
||||||
function UpdateSequence($oDb,$sTableName,$sColName)
|
|
||||||
{
|
|
||||||
$sql = "SELECT MAX($sColName) FROM $sTableName";
|
|
||||||
|
|
||||||
$oDb->query($sql,__LINE__,__FILE__);
|
|
||||||
if ($oDb->next_record() && $oDb->f(0))
|
|
||||||
{
|
|
||||||
$sql = "SELECT setval('seq_$sTableName',".(1 + $oDb->f(0)).")";
|
|
||||||
if($GLOBALS['DEBUG']) { echo "<br>Updating sequence 'seq_$sTableName' using: $sql"; }
|
|
||||||
return $oDb->query($sql,__LINE__,__FILE__);
|
|
||||||
}
|
|
||||||
return True;
|
|
||||||
}
|
|
||||||
|
|
||||||
function GetSequenceSQL($sTableName, &$sSequenceSQL)
|
|
||||||
{
|
|
||||||
$sSequenceSQL = sprintf("CREATE SEQUENCE seq_%s", $sTableName);
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
function CreateTable($oProc, $aTables, $sTableName, $aTableDef, $bCreateSequence = true)
|
|
||||||
{
|
|
||||||
if($oProc->_GetTableSQL($sTableName, $aTableDef, $sTableSQL, $sSequenceSQL,$append_ix))
|
|
||||||
{
|
|
||||||
/* create sequence first since it will be needed for default */
|
|
||||||
if($bCreateSequence && $sSequenceSQL != '')
|
|
||||||
{
|
|
||||||
if($GLOBALS['DEBUG']) { echo '<br>Making sequence using: ' . $sSequenceSQL; }
|
|
||||||
$oProc->m_odb->query($sSequenceSQL);
|
|
||||||
}
|
|
||||||
|
|
||||||
if($append_ix)
|
|
||||||
{
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$query = "CREATE TABLE $sTableName ($sTableSQL)";
|
|
||||||
}
|
|
||||||
|
|
||||||
return !!($oProc->m_odb->query($query));
|
|
||||||
}
|
|
||||||
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user