This commit is contained in:
Scott E. Graves 2024-10-01 10:16:39 -05:00
parent ae98d199e7
commit bd754a7ee8

View File

@ -39,7 +39,7 @@ auto db_update::dump() const -> std::string {
}
auto column = std::next(context_->values.begin(), idx);
query << column->first << "=?" + std::to_string(idx + 1);
query << '"' << column->first << "\"=?" + std::to_string(idx + 1);
}
if (not context_->ands.empty()) {