mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-14 00:39:57 +09:00
fix Argument and ConditionArgument type
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0-DB@8563 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
013ada255d
commit
e9dca90031
3 changed files with 28 additions and 20 deletions
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
class ConditionArgument extends Argument {
|
||||
var $operation;
|
||||
var $type;
|
||||
|
||||
|
||||
function ConditionArgument($name, $value, $operation){
|
||||
parent::Argument($name, $value);
|
||||
|
|
@ -139,19 +139,7 @@
|
|||
//if($column_type === '') $column_type = 'varchar';
|
||||
|
||||
}
|
||||
|
||||
function escapeValue($value){
|
||||
if(in_array($this->type, array('date', 'varchar', 'char','text', 'bigtext'))){
|
||||
if(!is_array($value))
|
||||
$value = '\''.$value.'\'';
|
||||
else {
|
||||
$total = count($value);
|
||||
for($i = 0; $i < $total; $i++)
|
||||
$value[$i] = '\''.$value[$i].'\'';
|
||||
}
|
||||
}
|
||||
return $value;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue