* * and Miles Lott * * -------------------------------------------- * * 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. * \**************************************************************************/ 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 '
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 '
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; } } ?>