* @param {String} [alias=currentAlias] database alias, you can specify null if you have no alias available and you can manually set the dbType property
* @param {String} [pAlias=currentAlias] database alias, you can specify null if you have no alias available and you can manually set the dbType property
*
* @class
*/
functionSqlMaskingUtils(alias){
functionSqlMaskingUtils(pAlias)
{
this.alias=null;
Object.defineProperty(this,"alias",{
set:function(v){
...
...
@@ -3089,10 +3090,10 @@ function SqlMaskingUtils(alias) {
}
});
if (alias===undefined)
if (pAlias===undefined)
this.alias=vars.getString("$sys.dbalias");
else
this.alias=alias;
this.alias=pAlias;
}
/**
...
...
@@ -3101,7 +3102,7 @@ function SqlMaskingUtils(alias) {