rhymix/classes/db/queryparts/expression/InsertExpression.class.php

29 lines
No EOL
505 B
PHP

<?php
/**
* @class InsertExpression
* @author Arnia Software
* @brief
*
*/
class InsertExpression extends Expression {
var $argument;
function InsertExpression($column_name, $argument){
parent::Expression($column_name);
$this->argument = $argument;
}
function getValue(){
return $this->argument->getValue();
}
function show(){
$value = $this->argument->getValue();
if(!isset($value)) return false;
return true;
}
}
?>