Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Retrieves or sets the value of the referenced MUMPS global node. Note that this API only gets sets a single, scalar value at the referenced node, and not an entire global or global sub-tree. In order to get or set entire globals or global sub-trees, see global.getObject() and global.setObject().

Arguments

If the newValue argument is not provided, value() will return the existing value.

...

Returns either a string or a numeric value representing the value of the reference MUMPS global node.

Example

 


Code Block
languagecoldfusion
titleCFML
linenumberstrue
<!--- this is equivalent to the following MUMPS code:
set ^people(1,"name")="John Willis"
write "Name: ",^people(1,name"),!
--->

<cfset glob = createObject("component", "new lib.cfmumps.global")>
<cfset glob.openGlobal("people", [1, "name"])>
<cfset glob.value("John Willis")>

<cfoutput>
Name: #glob.value()#<br>
</cfoutput>

...