Difference between revisions of "NXSL:map"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ Returns the value which corresponds to a specified key from specified Mapping Table == Syntax == map(''"tableName"'', ''"keyName"''); == Parameters == :{| |- |...")
 
Line 5: Line 5:
== Syntax ==
== Syntax ==


map(''"tableName"'', ''"keyName"'');
map(''tableName'', ''keyName'');




Line 28: Line 28:


  map("MyTable", "MyKey1") -> returns "MyValue1"
  map("MyTable", "MyKey1") -> returns "MyValue1"
myTable = "MyTable";
myKey = "MyKey1";
map(myTable, myKey) -> returns "MyValue1"

Revision as of 17:52, 19 September 2014

Returns the value which corresponds to a specified key from specified Mapping Table


Syntax

map(tableName, keyName);


Parameters

tableName name of Mapping Table.
keyName name of the Key.

Return Value

Value corresponding for a keyName from tableName.

Examples

MyTable:

| MyKey1 | MyValue1 |
| MyKey2 | MyValue2 |
map("MyTable", "MyKey1")		->	returns "MyValue1"
myTable = "MyTable";
myKey = "MyKey1";
map(myTable, myKey)		->	returns "MyValue1"