This commit is contained in:
2026-06-30 23:00:25 +08:00
parent ffc2af69da
commit e40de4ee4a
+3
View File
@@ -105,6 +105,9 @@ class SqlBuilder extends Component
if (empty($string)) { if (empty($string)) {
return Kiri::getLogger()->logCategory('None data update.'); return Kiri::getLogger()->logCategory('None data update.');
} }
var_dump($attributes, $this->query->getCondition());
return 'UPDATE ' . $this->getFromAlias() . ' SET ' . implode(',', $string) . $this->make(); return 'UPDATE ' . $this->getFromAlias() . ' SET ' . implode(',', $string) . $this->make();
} }