foxhound 2.0.21 → 2.0.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "foxhound",
3
- "version": "2.0.21",
3
+ "version": "2.0.22",
4
4
  "description": "A Database Query generation library.",
5
5
  "main": "source/FoxHound.js",
6
6
  "scripts": {
@@ -21,7 +21,7 @@ var FoxHoundDialectALASQL = function(pFable)
21
21
  //Request time from SQL server with microseconds resolution
22
22
  const SQL_NOW = "NOW(3)";
23
23
 
24
- _Fable = pFable;
24
+ let _Fable = pFable;
25
25
 
26
26
  /**
27
27
  * Generate a table name from the scope.
@@ -13,7 +13,7 @@
13
13
 
14
14
  var FoxHoundDialectDGraph = function(pFable)
15
15
  {
16
- _Fable = pFable;
16
+ let _Fable = pFable;
17
17
 
18
18
  /**
19
19
  * Strip any table-name prefix from a column name.
@@ -21,7 +21,7 @@ var FoxHoundDialectMSSQL = function(pFable)
21
21
  //Request time from SQL server with microseconds resolution
22
22
  const SQL_NOW = "GETUTCDATE()";
23
23
 
24
- _Fable = pFable;
24
+ let _Fable = pFable;
25
25
 
26
26
  /**
27
27
  * Generate a table name from the scope
@@ -13,7 +13,7 @@
13
13
 
14
14
  var FoxHoundDialectMongoDB = function(pFable)
15
15
  {
16
- _Fable = pFable;
16
+ let _Fable = pFable;
17
17
 
18
18
  /**
19
19
  * Strip any table-name prefix from a column name.
@@ -21,7 +21,7 @@ var FoxHoundDialectMySQL = function(pFable)
21
21
  //Request time from SQL server with microseconds resolution
22
22
  const SQL_NOW = "NOW(3)";
23
23
 
24
- _Fable = pFable;
24
+ let _Fable = pFable;
25
25
 
26
26
  /**
27
27
  * Generate a table name from the scope
@@ -20,7 +20,7 @@ var FoxHoundDialectPostgreSQL = function(pFable)
20
20
  {
21
21
  const SQL_NOW = "NOW()";
22
22
 
23
- _Fable = pFable;
23
+ let _Fable = pFable;
24
24
 
25
25
  /**
26
26
  * Generate a table name from the scope
@@ -24,7 +24,7 @@ var FoxHoundDialectSQLite = function(pFable)
24
24
  //Request time from SQL server with microseconds resolution
25
25
  const SQL_NOW = "NOW(3)";
26
26
 
27
- _Fable = pFable;
27
+ let _Fable = pFable;
28
28
 
29
29
  /**
30
30
  * Generate a table name from the scope.
@@ -13,7 +13,7 @@
13
13
 
14
14
  var FoxHoundDialectSolr = function(pFable)
15
15
  {
16
- _Fable = pFable;
16
+ let _Fable = pFable;
17
17
 
18
18
  /**
19
19
  * Strip any table-name prefix from a column name.