This commit is contained in:
Benjamin Toby 2025-07-09 21:53:27 +01:00
parent da87fe6491
commit c593404263
3 changed files with 1 additions and 4 deletions

View File

@ -72,7 +72,6 @@ values, debug) {
resArray.push(results); resArray.push(results);
} }
catch (error) { catch (error) {
console.log("query", query);
resArray.push(null); resArray.push(null);
currentQueryError["error"] = error.message; currentQueryError["error"] = error.message;
queryErrorArray.push(currentQueryError); queryErrorArray.push(currentQueryError);

View File

@ -86,8 +86,6 @@ export default async function connDbHandler<ReturnType = any>(
resArray.push(results); resArray.push(results);
} catch (error: any) { } catch (error: any) {
console.log("query", query);
resArray.push(null); resArray.push(null);
currentQueryError["error"] = error.message; currentQueryError["error"] = error.message;
queryErrorArray.push(currentQueryError); queryErrorArray.push(currentQueryError);

View File

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