SHOWTABLE
Syntax: #SHOWTABLE expression
Displays the internal json table structure of a string list or database variable with each item on a separate line.
SHOWTABLE examples
Code: |
#ADDKEY dbvar Name Zugg
#ADDKEY dbvar Level 20
#ADDKEY dbvar Attr {20|15|6}
#SHOWTABLE @dbvar |
displays the following:
Code: |
{
"Level": 20,
"Name": "Zugg",
"Attr": [
20,
15,
6
]
} |
Notice how the nested string list is handled as an array. |