This commit is contained in:
2026-02-11 07:18:18 +01:00
parent e1ca42137a
commit 35ad577ead
3 changed files with 3 additions and 3 deletions
@@ -30,7 +30,7 @@ function sqlInsertGenerator({ tableName, data, dbFullName, }) {
? String(value().value)
: null;
if (!finalValue) {
return undefined;
return "?";
}
queryValues.push(finalValue);
const placeholder = typeof value == "function"