包 | system.db.schema.mysql |
---|---|
继承 | class CMysqlColumnSchema » CDbColumnSchema » CComponent |
源自 | 1.0 |
版本 | $Id: CMysqlColumnSchema.php 3204 2011-05-05 21:36:32Z alexander.makarow $ |
源码 |
CMysqlColumnSchema类描述MySQL表的列元数据。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
allowNull | boolean | 该列是否可以为null | CDbColumnSchema |
autoIncrement | boolean | 该列是否为自增列 | CDbColumnSchema |
dbType | string | 该列的数据类型。 | CDbColumnSchema |
defaultValue | mixed | 该列的默认值 | CDbColumnSchema |
isForeignKey | boolean | 该列是否为外键 | CDbColumnSchema |
isPrimaryKey | boolean | 该列是否为主键 | CDbColumnSchema |
name | string | 列名(无引号)。 | CDbColumnSchema |
precision | integer | 该列数据的精度,若它是一个数。 | CDbColumnSchema |
rawName | string | 原始列名。它被引用了以便在SQL查询中使用。 | CDbColumnSchema |
scale | integer | 该列数据的规模,若它是一个数。 | CDbColumnSchema |
size | integer | 该列的大小。 | CDbColumnSchema |
type | string | 该列的HP类型。 | CDbColumnSchema |
公共方法
受保护方法
方法 | 描述 | 定义在 |
---|---|---|
extractDefault() | 提取列的默认值。 | CMysqlColumnSchema |
extractLimit() | 从列类型中提取大小、精确度和规模。 | CMysqlColumnSchema |
extractType() | 从数据类型中提取PHP类型。 | CMysqlColumnSchema |
方法详细
extractDefault()
方法
protected void extractDefault(mixed $defaultValue)
| ||
$defaultValue | mixed | 从元数据中获得的默认值。 |
protected function extractDefault($defaultValue)
{
if($this->dbType==='timestamp' && $defaultValue==='CURRENT_TIMESTAMP')
$this->defaultValue=null;
else
parent::extractDefault($defaultValue);
}
提取列的默认值。 该值会被转换到正确的PHP类型。
extractLimit()
方法
protected void extractLimit(string $dbType)
| ||
$dbType | string | 列类型。 |
protected function extractLimit($dbType)
{
if (strncmp($dbType, 'enum', 4)===0 && preg_match('/\((.*)\)/',$dbType,$matches))
{
$values = explode(',', $matches[1]);
$size = 0;
foreach($values as $value)
{
if(($n=strlen($value)) > $size)
$size=$n;
}
$this->size = $this->precision = $size-2;
}
else
parent::extractLimit($dbType);
}
从列类型中提取大小、精确度和规模。
extractType()
方法
protected void extractType(string $dbType)
| ||
$dbType | string | 数据类型 |
protected function extractType($dbType)
{
if(strncmp($dbType,'enum',4)===0)
$this->type='string';
else if(strpos($dbType,'float')!==false || strpos($dbType,'double')!==false)
$this->type='double';
else if(strpos($dbType,'bool')!==false)
$this->type='boolean';
else if(strpos($dbType,'int')===0 && strpos($dbType,'unsigned')===false || preg_match('/(bit|tinyint|smallint|mediumint)/',$dbType))
$this->type='integer';
else
$this->type='string';
}
从数据类型中提取PHP类型。