/
global.getObject()
global.getObject()
Returns a CFML struct containing the referenced subtree of a MUMPS global.
Arguments
None.
Return Value
A CFML struct containing all the subscripts and data of the MUMPS global referenced in the preceding call to open().
Exceptions
If the lib.cfmumps.global object was opened with the atomic argument set to true, can raise an exception if a lock on the specified global and subscripts cannot be acquired within the object's lockTimeout duration. CFMumps 0.03 and later only.
Example
CFML
<!--- return the NEW PERSON file for duz in ^VA(200) ---> <cfset duz = 1> <cfset glob = new lib.cfmumps.Global("VA", [200, duz])> <cfset person = glob.getObject()>
, multiple selections available,
Related content
Globals API Instantiation
Globals API Instantiation
More like this
global.setObject()
global.setObject()
More like this
global.defined()
global.defined()
More like this
mumps.get()
mumps.get()
More like this
mumps.merge()
mumps.merge()
More like this
mumps.data()
mumps.data()
More like this