Merge pull request #1099 from ByteHamster/quote-null-value
Do not try to quote null value for SQL
This commit is contained in:
commit
a698c42952
1 changed files with 5 additions and 1 deletions
|
@ -178,9 +178,13 @@ abstract class Database extends \Flake\Core\FLObject {
|
||||||
|
|
||||||
foreach ($arr as $k => $v) {
|
foreach ($arr as $k => $v) {
|
||||||
if ($noQuote === false || !in_array($k, $noQuote)) {
|
if ($noQuote === false || !in_array($k, $noQuote)) {
|
||||||
|
if ($v === null) {
|
||||||
|
$arr[$k] = "NULL";
|
||||||
|
} else {
|
||||||
$arr[$k] = $this->fullQuote($v, $table);
|
$arr[$k] = $this->fullQuote($v, $table);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return $arr;
|
return $arr;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue