Documentation

#SHOWTABLE

Added in v3.22

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

#ADDKEY dbvar Name Zugg
#ADDKEY dbvar Level 20
#ADDKEY dbvar Attr {20|15|6}
#SHOWTABLE @dbvar


displays the following:

{
"Level": 20,
"Name": "Zugg",
"Attr": [
20,
15,
6
]
}

Notice how the nested string list is handled as an array.

Add comment

Login or register to post comments