phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] phpgwapi/inc/class.schema_proc_mssql.inc.php, 1.6


From: nomail
Subject: [Phpgroupware-cvs] phpgwapi/inc/class.schema_proc_mssql.inc.php, 1.6
Date: Thu, 30 Dec 2004 07:47:31 +0100

Update of /phpgwapi/inc
Added Files:
        Branch: 
          class.schema_proc_mssql.inc.php

date: 2004/12/30 06:47:31;  author: skwashd;  state: Exp;  lines: +8 -2

Log Message:
new HEAD
=====================================================================
<?php
        /**
        * Database schema abstraction class for MSSQL
        * @author Michael Dean <address@hidden>
        * @author Miles Lott <address@hidden>
        * @copyright Copyright (C) ? Michael Dean, Miles Lott
        * @copyright Portions Copyright (C) 2003,2004 Free Software Foundation, 
Inc. http://www.fsf.org/
        * @license http://www.fsf.org/licenses/gpl.html GNU General Public 
License
        * @package phpgwapi
        * @subpackage database
        * @version $Id: class.schema_proc_mssql.inc.php,v 1.6 2004/12/30 
06:47:31 skwashd Exp $
        */

        /**
        * Database schema abstraction class for MSSQL
        * 
        * @package phpgwapi
        * @subpackage database
        */
        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();

                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)';
                                        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 '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':
                                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;
                        }
                        return $sTranslated;
                }

                function GetPKSQL($sFields)
                {
                        return "PRIMARY KEY($sFields)";
                }

                function GetUCSQL($sFields)
                {
                        return "UNIQUE($sFields)";
                }

                function GetIXSQL($sFields)
                {
                        return '';
                }

                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 = ereg_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 GetTriggerSQL($sTableName, $sColumnNames, 
&$sTriggerSQL)
                {
                        $sTriggerSQL = ''; 
                        return false;
                }

                function CreateTable($oProc, &$aTables, $sTableName, $aTableDef)
                {
                        if ($oProc->_GetTableSQL($sTableName, $aTableDef, 
$sTableSQL, $sSequenceSQL, $sTriggerSQL))
                        {
                                // 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;
                }
        }
?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]