This commit is contained in:
Benjamin Toby 2026-02-11 07:18:18 +01:00
parent e1ca42137a
commit 35ad577ead
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@ function sqlInsertGenerator({ tableName, data, dbFullName, }) {
? String(value().value) ? String(value().value)
: null; : null;
if (!finalValue) { if (!finalValue) {
return undefined; return "?";
} }
queryValues.push(finalValue); queryValues.push(finalValue);
const placeholder = typeof value == "function" const placeholder = typeof value == "function"

View File

@ -41,7 +41,7 @@ export default function sqlInsertGenerator({
: null; : null;
if (!finalValue) { if (!finalValue) {
return undefined; return "?";
} }
queryValues.push(finalValue); queryValues.push(finalValue);

View File

@ -1,6 +1,6 @@
{ {
"name": "@moduletrace/datasquirel", "name": "@moduletrace/datasquirel",
"version": "5.7.41", "version": "5.7.42",
"description": "Cloud-based SQL data management tool", "description": "Cloud-based SQL data management tool",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {