masterrecord 0.3.15 ā 0.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +4 -1
- package/Migrations/schema.js +10 -9
- package/SQLLiteEngine.js +83 -48
- package/context.js +48 -38
- package/deleteManager.js +11 -11
- package/insertManager.js +7 -7
- package/mySQLAsyncConnect.js +44 -0
- package/package.json +2 -2
- package/realMySQLEngine.js +836 -0
- package/test/parameterizedPlaceholderTest.js +1 -1
- package/mySQLEngine.js +0 -1105
- package/mySQLSyncConnect.js +0 -82
|
@@ -147,7 +147,7 @@ if(failed === 0){
|
|
|
147
147
|
console.log("š All placeholder tests passed!");
|
|
148
148
|
console.log("\n⨠Bug Fix Verified!");
|
|
149
149
|
console.log("\nš What was fixed:");
|
|
150
|
-
console.log(" -
|
|
150
|
+
console.log(" - realMySQLEngine.js: Added placeholder detection in buildWhere");
|
|
151
151
|
console.log(" - SQLLiteEngine.js: Added placeholder detection in buildWhere");
|
|
152
152
|
console.log(" - postgresEngine.js: Added placeholder detection in buildWhere");
|
|
153
153
|
console.log("\n Placeholders (?, $1, $2, etc.) are no longer quoted as literal strings.");
|