Skip to content

getVariableList

Jesse Lingeman edited this page Aug 27, 2013 · 1 revision

Purpose

Returns a list of all the names of all of the variables in the database.

Parameters

None.

Example

variables = getVariableList()

# Print out the names of each of the variables
for var in variables
    puts var
    # Get this variable from the database
    dbVar = getVariable(var)
    # Now do something with it...

end