diff --git a/process/Keyword_lib/process.js b/process/Keyword_lib/process.js index e8ba33c9876af40c879affa9f783061de91df315..059b246bec191d3b9571315e9a0bf10942bb02b6 100644 --- a/process/Keyword_lib/process.js +++ b/process/Keyword_lib/process.js @@ -451,6 +451,7 @@ function KeywordUtils(){ return { /** * toArray + * @ignore */ toArray: _toArrayFn ,getPropForKey: _getPropForKeyFn diff --git a/process/Sql_lib/process.js b/process/Sql_lib/process.js index 92f470e057539726b13de29bb84deb2bd063fd14..bd7e326623e92e422f6b6f8dc04171ffc04f53fc 100644 --- a/process/Sql_lib/process.js +++ b/process/Sql_lib/process.js @@ -423,10 +423,12 @@ SqlCondition.equalsNot = function(pField, pValue, pAlternativeCond, pAlias) { } /** - provides functions for masking sql functions -* -* @param {String} [alias=currentAlias] database alias, you can specify null if you have no alias available and you can manually set the dbType property -*/ + *provides functions for masking sql functions + * + * @param {String} [alias=currentAlias] database alias, you can specify null if you have no alias available and you can manually set the dbType property + * + * @class + */ function SqlMaskingUtils(alias) { this.alias = null; Object.defineProperty(this, "alias", { @@ -1028,7 +1030,7 @@ SqlUtils.getSystemAlias = function() * * @return {String} SQL condition: where VALS in (1,2,3) */ -this.getSqlInStatement = function(pFieldname, pData, pQuoteSymbol) { +SqlUtils.getSqlInStatement = function(pFieldname, pData, pQuoteSymbol) { if (pData.length == 0) return " 1 = 2 ";