Inheritance: extends DataType
Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct('TIME_TO_SEC', 'SEC_TO_TIME', 'TIME', [], null, ParameterType::Integer);
 }
Ejemplo n.º 2
0
 public function __construct($Length)
 {
     parent::__construct('HEX', 'UNHEX', 'BINARY', [$Length], null, ParameterType::String);
 }
Ejemplo n.º 3
0
 public function __construct($DataType)
 {
     parent::__construct('UNIX_TIMESTAMP', 'FROM_UNIXTIME', $DataType, [], null, ParameterType::Integer);
 }
Ejemplo n.º 4
0
 public function GetPersistExpression(CoreExpression $Expression)
 {
     return $this->DataType->GetPersistExpression(parent::GetPersistExpression($Expression));
 }