Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "foxhound", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "A Database Query generation library.", | ||
@@ -5,0 +5,0 @@ "main": "source/FoxHound.js", |
@@ -400,8 +400,2 @@ /** | ||
{ | ||
// TODO: Validate against pParameters.query.schema | ||
if (tmpCreateSet != '') | ||
{ | ||
tmpCreateSet += ','; | ||
} | ||
// No hash table yet, so, we will just linear search it for now. | ||
@@ -421,4 +415,2 @@ // This uses the schema to decide if we want to treat a column differently on insert | ||
{ | ||
case 'UpdateDate': | ||
case 'UpdateIDUser': | ||
case 'DeleteDate': | ||
@@ -429,2 +421,6 @@ case 'DeleteIDUser': | ||
default: | ||
if (tmpCreateSet != '') | ||
{ | ||
tmpCreateSet += ','; | ||
} | ||
tmpCreateSet += ' '+tmpColumn; | ||
@@ -431,0 +427,0 @@ break; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
65767
1955